You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
454 B
12 lines
454 B
5 years ago
|
create database kratos_demo;
|
||
|
use kratos_demo;
|
||
|
|
||
|
CREATE TABLE `articles` (
|
||
|
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键ID',
|
||
|
`title` varchar(64) NOT NULL COMMENT '名称',
|
||
|
`mtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后修改时间',
|
||
|
`ctime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||
|
PRIMARY KEY (`id`),
|
||
|
KEY `ix_mtime` (`mtime`)
|
||
|
) COMMENT='文章表';
|