Migrations
This commit is contained in:
parent
514331411f
commit
5199576a87
1 changed files with 7 additions and 0 deletions
7
server/migrations/0010.sql
Normal file
7
server/migrations/0010.sql
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
PRAGMA foreign_keys = ON;
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS users (
|
||||||
|
id SERIAL PRIMARY KEY,
|
||||||
|
username VARCHAR(255) NOT NULL,
|
||||||
|
password VARCHAR(255) NOT NULL
|
||||||
|
);
|
Loading…
Reference in a new issue