20181224114347.sql 366 Bytes
/*
    0元购开奖信息
    @author: yyq <kingcoon@163.com>
    @date: 2018-12-24 11:43:47
*/
#注意:GO;分割执行块
ALTER TABLE act_prize_product ADD (
    `notice` VARCHAR(1000) DEFAULT '' comment '公告',
    `lottery_info` VARCHAR(1000) DEFAULT '' comment '开奖信息',
    `lottery_time` int(10) NOT NULL DEFAULT 0 comment '开奖时间'
    );
GO;