1
mirror of https://github.com/jlelse/GoBlog synced 2024-06-01 14:24:27 +00:00
GoBlog/dbmigrations/00030.sql

5 lines
109 B
SQL

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