migrate/1740108925_create_ufutx_program_adv.up.sql
2025-02-21 13:35:00 +08:00

10 lines
496 B
SQL

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