GoBlog/dbmigrations/00029.sql

9 lines
269 B
MySQL
Raw Normal View History

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)
);