added util/import-model.pl.

This commit is contained in:
agentzh (章亦春)
2010-01-20 18:22:24 +08:00
parent c86a4b7113
commit abfff86dbf
2 changed files with 128 additions and 1 deletions

View File

@ -17,7 +17,7 @@ create table comments (
sender varchar(64) not null,
email varchar(64) not null,
url varchar(1024),
body text,
body text not null,
created timestamp(0) default now() not null,
post bigint not null,
foreign key (post) references posts(id)