diff --git a/sql/init.sql b/sql/init.sql new file mode 100644 index 0000000..31e89c6 --- /dev/null +++ b/sql/init.sql @@ -0,0 +1,16 @@ +-- 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