crablog/migrations/2018-10-23-070114_add setting table/up.sql

6 lines
130 B
MySQL
Raw Normal View History

2018-10-23 11:03:46 +04:00
-- Your SQL goes here
CREATE TABLE "public"."setting" (
"name" varchar NOT NULL,
2018-10-23 11:22:52 +04:00
"value" text,
PRIMARY KEY ("name")
2018-10-23 11:03:46 +04:00
);