From cdbcbea91a69584c39f723027869410cd8f2ff39 Mon Sep 17 00:00:00 2001 From: bton Date: Wed, 20 Mar 2024 19:53:16 +0100 Subject: [PATCH] deleted non used file --- Website/mate.db.sql.txt | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 Website/mate.db.sql.txt diff --git a/Website/mate.db.sql.txt b/Website/mate.db.sql.txt deleted file mode 100644 index d20b9a5..0000000 --- a/Website/mate.db.sql.txt +++ /dev/null @@ -1,14 +0,0 @@ -BEGIN TRANSACTION; -CREATE TABLE IF NOT EXISTS "users" ( - "id" INTEGER NOT NULL, - "username" TEXT NOT NULL, - "balance" INTEGER NOT NULL, - PRIMARY KEY("id") -); -CREATE TABLE IF NOT EXISTS "tags" ( - "tagid" INEGER NOT NULL, - "userid" INTEGER, - FOREIGN KEY("userid") REFERENCES "users"("id"), - PRIMARY KEY("tagid") -); -COMMIT;