diff --git a/database/bcevent.sql b/database/bcevent.sql index dd89755..dd64b32 100644 --- a/database/bcevent.sql +++ b/database/bcevent.sql @@ -674,6 +674,31 @@ CREATE TABLE `t_escec_transfer` ( ) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin; /*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Table structure for table `t_vester_claim` +-- + +DROP TABLE IF EXISTS `t_vester_claim`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `t_vester_claim` ( + `idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id', + `txhash` varchar(255) NOT NULL DEFAULT '' COMMENT 'txhash', + `log_index` bigint NOT NULL DEFAULT '0' COMMENT 'log_index', + `net_id` bigint NOT NULL DEFAULT '0' COMMENT 'net_id', + `contract_address` varchar(60) NOT NULL DEFAULT '' COMMENT 'contract_address', + `src_idx` bigint NOT NULL DEFAULT '0' COMMENT 'src_idx', + `event_name` varchar(60) NOT NULL DEFAULT '' COMMENT '事件名', + `chain_timestamp` bigint NOT NULL DEFAULT '0' COMMENT '链事件时间戳', + `account_address` varchar(60) NOT NULL DEFAULT '' COMMENT '钱包地址', + `amount` varchar(60) NOT NULL DEFAULT '' COMMENT '数量', + `createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间', + `modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间', + PRIMARY KEY (`idx`), + KEY `idx_account_address` (`account_address`) +) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `t_vester_deposit` --