1
0
mirror of https://github.com/openresty/openresty synced 2024-11-14 08:45:50 +01:00
openresty/demo/Blog/misc/mysql/init-db.sql
2010-01-20 18:05:41 +08:00

26 lines
600 B
SQL

-- Blog posts
drop table if exists posts;
create table posts (
id serial,
title varchar(128) not null,
content text not null,
author varchar(64) not null,
created timestamp(0) default now() not null,
comments integer default 0 not null,
primary key (id)
);
-- Blog comments
drop table if exists comments;
create table comments (
id serial,
sender varchar(64) not null,
email varchar(64) not null,
url varchar(1024),
body text,
created timestamp(0) default now() not null,
post bigint not null,
foreign key (post) references posts(id)
);