From a8990d3645b664030698732aab6c83a4ddc75298 Mon Sep 17 00:00:00 2001 From: dingruichao <281809423@qq.com> Date: Thu, 15 Oct 2020 21:48:05 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E8=BD=AE=E6=92=AD=E5=9B=BE?= =?UTF-8?q?=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/business_20201010.sql | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/sql/business_20201010.sql b/sql/business_20201010.sql index 91debda82..74e0d49eb 100644 --- a/sql/business_20201010.sql +++ b/sql/business_20201010.sql @@ -241,4 +241,19 @@ create table event_recruitment ( update_by varchar(64) default '' comment '更新者', update_time datetime comment '更新时间', primary key (id) -) engine=innodb auto_increment=10 comment = '活动招募表'; \ No newline at end of file +) 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 = '首页轮播图表'; \ No newline at end of file