數(shù)據(jù)庫設(shè)計
1,新建數(shù)據(jù)庫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)如下圖所示: