1
This commit is contained in:
parent
a0dbdeb259
commit
a4b9728727
@ -1,6 +1,6 @@
|
|||||||
-- MySQL dump 10.14 Distrib 5.5.41-MariaDB, for Linux (x86_64)
|
-- MySQL dump 10.14 Distrib 5.5.41-MariaDB, for Linux (x86_64)
|
||||||
--
|
--
|
||||||
-- Host: localhost Database: game1009proxydb
|
-- Host: localhost Database: paydb
|
||||||
-- ------------------------------------------------------
|
-- ------------------------------------------------------
|
||||||
-- Server version 5.5.41-MariaDB
|
-- Server version 5.5.41-MariaDB
|
||||||
|
|
||||||
@ -72,6 +72,38 @@ CREATE TABLE `orderinfo` (
|
|||||||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Table structure for table `receipt`
|
||||||
|
--
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS `receipt`;
|
||||||
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||||
|
/*!40101 SET character_set_client = utf8 */;
|
||||||
|
CREATE TABLE `receipt` (
|
||||||
|
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
||||||
|
`receipt_id` varchar(255) NOT NULL DEFAULT '' COMMENT '票据id',
|
||||||
|
`account_id` varchar(255) NOT NULL DEFAULT '' COMMENT 'account_id',
|
||||||
|
`roleid` varchar(255) NOT NULL DEFAULT '' COMMENT '角色id',
|
||||||
|
`server_id` int(11) NOT NULL DEFAULT '0' COMMENT 'server_id',
|
||||||
|
`channel` int(11) NOT NULL DEFAULT '0' COMMENT 'channel',
|
||||||
|
`gameid` int(11) NOT NULL DEFAULT '0' COMMENT 'gameid',
|
||||||
|
`itemid` int(11) NOT NULL DEFAULT '0' COMMENT '商品id',
|
||||||
|
`price` int(11) NOT NULL DEFAULT '0' COMMENT 'price',
|
||||||
|
`ipv4` varchar(50) NOT NULL DEFAULT '' COMMENT 'ipv4地址',
|
||||||
|
`receipt_data` mediumblob COMMENT '票据信息',
|
||||||
|
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
||||||
|
|
||||||
|
PRIMARY KEY (`idx`),
|
||||||
|
UNIQUE KEY `receipt_id` (`receipt_id`),
|
||||||
|
KEY `account_id` (`account_id`),
|
||||||
|
KEY `roleid` (`roleid`),
|
||||||
|
KEY `server_id` (`server_id`),
|
||||||
|
KEY `channel` (`channel`),
|
||||||
|
KEY `createtime` (`createtime`),
|
||||||
|
KEY `gameid` (`gameid`)
|
||||||
|
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
||||||
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||||
|
2
third_party/phpcommon
vendored
2
third_party/phpcommon
vendored
@ -1 +1 @@
|
|||||||
Subproject commit fe26889b998d8c241a5deef20eb165e3d4263e63
|
Subproject commit 233c73417ea29b602617c6900649d7a23c6e36fc
|
Loading…
x
Reference in New Issue
Block a user