program adv

This commit is contained in:
Hankin 2025-02-21 13:35:00 +08:00
parent 2c16f432ec
commit 9c16910a21

View File

@ -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 = '程序首页广告';