資料庫設(shè)計(jì)
1,新資料庫onecms
#CREATE DATABASE onecms;
2,新建message表:
CREATE TABLE message(
id ??int(11) not null primary key auto_increment,
title varchar(255) NOT NULL,
content text NOT NULL)
#ENGINE=InnoDB DEFAULT CHARSET=utf8;
#3,表格結(jié)構(gòu)如下圖所示: