Setup Auth DB

This commit is contained in:
Cameron Cordes
2020-07-07 21:06:43 -04:00
parent 36f7351627
commit f8df3678b1
10 changed files with 304 additions and 0 deletions

View File

View File

@@ -0,0 +1 @@
DROP TABLE users

View File

@@ -0,0 +1,5 @@
CREATE TABLE users (
id INT PRIMARY KEY AUTOINCREMENT,
username TEXT NOT NULL,
password TEXT NOT NULL
)