1
mirror of https://github.com/jlelse/GoBlog synced 2024-05-29 10:14:26 +00:00
GoBlog/dbmigrations/00029.sql

9 lines
269 B
SQL

create table sections (
blog text not null,
name text not null,
title text not null default '',
description text not null default '',
pathtemplate text not null default '',
showfull boolean not null default false,
primary key (blog, name)
);