feat: add setting table migration
This commit is contained in:
parent
8c9827b7eb
commit
b7c4a6bcb5
2
migrations/2018-10-23-070114_add setting table/down.sql
Normal file
2
migrations/2018-10-23-070114_add setting table/down.sql
Normal file
@ -0,0 +1,2 @@
|
||||
-- This file should undo anything in `up.sql`
|
||||
DROP TABLE articles
|
5
migrations/2018-10-23-070114_add setting table/up.sql
Normal file
5
migrations/2018-10-23-070114_add setting table/up.sql
Normal file
@ -0,0 +1,5 @@
|
||||
-- Your SQL goes here
|
||||
CREATE TABLE "public"."setting" (
|
||||
"name" varchar NOT NULL,
|
||||
"value" varchar
|
||||
);
|
Loading…
Reference in New Issue
Block a user