首页轮播图表
This commit is contained in:
parent
43919fc760
commit
a8990d3645
|
|
@ -242,3 +242,18 @@ create table event_recruitment (
|
||||||
update_time datetime comment '更新时间',
|
update_time datetime comment '更新时间',
|
||||||
primary key (id)
|
primary key (id)
|
||||||
) engine=innodb auto_increment=10 comment = '活动招募表';
|
) engine=innodb auto_increment=10 comment = '活动招募表';
|
||||||
|
|
||||||
|
-- ----------------------------
|
||||||
|
-- 13、首页轮播图表
|
||||||
|
-- ----------------------------
|
||||||
|
drop table if exists home_page_carousel;
|
||||||
|
create table home_page_carousel (
|
||||||
|
id bigint(20) not null auto_increment comment 'ID',
|
||||||
|
picture_url varchar(120) not null comment '图片地址',
|
||||||
|
del_flag char(1) default '0' comment '删除标志(0代表存在 2代表删除)',
|
||||||
|
create_by varchar(64) default '' comment '创建者',
|
||||||
|
create_time datetime comment '创建时间',
|
||||||
|
update_by varchar(64) default '' comment '更新者',
|
||||||
|
update_time datetime comment '更新时间',
|
||||||
|
primary key (id)
|
||||||
|
) engine=innodb auto_increment=10 comment = '首页轮播图表';
|
||||||
Loading…
Reference in New Issue