works!
This commit is contained in:
parent
8b76a51434
commit
d6ebd3a4a6
14 changed files with 276 additions and 24 deletions
0
migrations/.keep
Normal file
0
migrations/.keep
Normal file
1
migrations/2024-04-08-223926_create_accounts/down.sql
Normal file
1
migrations/2024-04-08-223926_create_accounts/down.sql
Normal file
|
@ -0,0 +1 @@
|
|||
DROP TABLE "accounts"
|
4
migrations/2024-04-08-223926_create_accounts/up.sql
Normal file
4
migrations/2024-04-08-223926_create_accounts/up.sql
Normal file
|
@ -0,0 +1,4 @@
|
|||
CREATE TABLE "accounts" (
|
||||
"email" TEXT NOT NULL PRIMARY KEY ASC,
|
||||
"date" TIMESTAMP NOT NULL
|
||||
) WITHOUT ROWID;
|
Loading…
Add table
Add a link
Reference in a new issue