mirror of
https://github.com/Fluffy-Bean/TastyBites.git
synced 2025-06-05 01:43:12 +00:00
Make SQL file
This commit is contained in:
parent
04adf38b46
commit
3614a2553f
1 changed files with 16 additions and 0 deletions
16
sql/init.sql
Normal file
16
sql/init.sql
Normal file
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue