1
mirror of https://github.com/jlelse/GoBlog synced 2024-06-01 06:44:30 +00:00
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)
);