aboutsummaryrefslogtreecommitdiff
path: root/h-source/Examples/articles.txt
blob: db3f022b256a92d8f5487bef95e16c2bdff4e043 (plain) (blame)
1
2
3
4
5
6
7
8
create table articles (
	id int(5) not null auto_increment primary key,
	title varchar(100) not null,
	author varchar(100) not null,
	category varchar(100) not null,
	abstract text CHARACTER SET utf8 not null,
	content text CHARACTER SET utf8 not null
);