From 53cbe6e26c82c432aa7885e39ea103b2e3d63322 Mon Sep 17 00:00:00 2001 From: Fluffy-Bean Date: Sat, 27 Apr 2024 15:55:51 +0100 Subject: [PATCH] Too early for a database --- sql/init.sql | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 sql/init.sql diff --git a/sql/init.sql b/sql/init.sql deleted file mode 100644 index 31e89c6..0000000 --- a/sql/init.sql +++ /dev/null @@ -1,16 +0,0 @@ --- SQL is designed for the SQLite database --- Moshpit of shit - -CREATE TABLE IF NOT EXISTS annoucements( - id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, - description TEXT NOT NULL, - created_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL -); - -CREATE TABLE IF NOT EXISTS menu_item( - id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, - description TEXT NOT NULL, - created_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL -) - --- FUCK