19 lines
692 B
PL/PgSQL
19 lines
692 B
PL/PgSQL
begin;
|
|
|
|
DROP TABLE IF EXISTS `holiday`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `holiday` (
|
|
`idx` bigint 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(2020120801);
|
|
|
|
commit;
|