Basic database layout

This commit is contained in:
shockrah 2024-10-28 20:10:12 -07:00
parent e85fa7b21c
commit 29561fb202
2 changed files with 16 additions and 0 deletions

4
db/readme.md Normal file
View File

@ -0,0 +1,4 @@
# Database Schema Layout and Design

12
db/tables.sql Normal file
View File

@ -0,0 +1,12 @@
CREATE TABLE IF NOT EXISTS users (
id INTEGER,
name VARCHAR(256),
PRIMARY KEY (id)
);
CREATE TABLE IF NOT EXISTS invites (
id BIGINT,
expires INTEGER,
PRIMARY KEY (id)
);