diff --git a/1740108925_create_ufutx_program_adv.up.sql b/1740108925_create_ufutx_program_adv.up.sql new file mode 100644 index 0000000..7c11be2 --- /dev/null +++ b/1740108925_create_ufutx_program_adv.up.sql @@ -0,0 +1,10 @@ +CREATE TABLE `ufutx_program_adv` ( + `id` INT NOT NULL AUTO_INCREMENT , + `pic` VARCHAR(255) NOT NULL COMMENT '图片url' , + `shop_id` INT NOT NULL DEFAULT '0' COMMENT '商品id' , + `start_time` timestamp null default null comment "开始时间", + `end_time` timestamp null default null comment "结束时间", + `created_at` TIMESTAMP NULL DEFAULT NULL , + `updated_at` TIMESTAMP NULL DEFAULT NULL , + PRIMARY KEY (`id`) +) ENGINE = InnoDB COMMENT = '程序首页广告'; \ No newline at end of file