diff --git a/public/Database/Example.json b/public/Database/Example.json deleted file mode 100644 index a429cd4..0000000 --- a/public/Database/Example.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "Project": "Example", - "database_type": "SQL Server", - "Note": "# Example\nThis is a Database", - "Tables": [ - { - "Name": "Users", - "Columns": [ - { - "Name": "id", - "Type": "int", - "Options": [ - "primary key", - "not null" - ] - }, - { - "Name": "username", - "Type": "varchar", - "Options": [] - } - ], - "Note":"This is the User Table" - }, - { - "Name": "Posts", - "Columns": [ - { - "Name": "id", - "Type": "int", - "Options": [ - "primary key", - "not null" - ] - }, - { - "Name": "user_id", - "Type": "int", - "Options": [] - } - ], - "Note": "This is the Posts Table" - } - ], - "References": [ - { - "Name": "UserPosts", - "Type": ">", - "Primary": { - "Table": "Posts", - "Column": "user_id" - }, - "Secondary": { - "Table": "Users", - "Column": "id" - } - } - ] -} \ No newline at end of file