Go server draft
This commit is contained in:
parent
51faa74cd8
commit
29d5885b67
7 changed files with 148 additions and 0 deletions
7
backend/migrations/0010.sql
Normal file
7
backend/migrations/0010.sql
Normal file
|
@ -0,0 +1,7 @@
|
|||
PRAGMA foreign_keys = ON;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS users (
|
||||
id INTEGER PRIMARY KEY,
|
||||
username VARCHAR(255) NOT NULL,
|
||||
password VARCHAR(255) NOT NULL
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue