17 lines
566 B
PL/PgSQL
17 lines
566 B
PL/PgSQL
begin;
|
|
|
|
CREATE TABLE `festival_activity` (
|
|
`idx` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
|
`accountid` varchar(60) NOT NULL DEFAULT '' COMMENT '账号id',
|
|
`blobdata` mediumblob COMMENT '节日活动数据json',
|
|
`create_time` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
|
`modify_time` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
|
|
PRIMARY KEY (`idx`),
|
|
UNIQUE KEY `accountid` (`accountid`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
|
|
|
|
|
insert into version (version) values(20200324);
|
|
|
|
commit;
|