feat: add setting table migration

This commit is contained in:
Kilerd Chan 2018-10-23 15:03:46 +08:00
parent 8c9827b7eb
commit b7c4a6bcb5
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,2 @@
-- This file should undo anything in `up.sql`
DROP TABLE articles

View File

@ -0,0 +1,5 @@
-- Your SQL goes here
CREATE TABLE "public"."setting" (
"name" varchar NOT NULL,
"value" varchar
);