GoBlog/dbmigrations/00030.sql

5 lines
109 B
MySQL
Raw Normal View History

create table settings (
name text not null,
value text not null default '',
primary key (name)
);