This commit is contained in:
aozhiwei 2024-11-27 14:28:11 +08:00
parent b92410e16b
commit 281f6da355

View File

@ -189,16 +189,16 @@ CREATE TABLE `t_bag` (
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
-- --
-- Table structure for table `t_order` -- Table structure for table `t_inapp_order`
-- --
DROP TABLE IF EXISTS `t_order`; DROP TABLE IF EXISTS `t_inapp_order`;
/*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */; /*!40101 SET character_set_client = utf8 */;
CREATE TABLE `t_order` ( CREATE TABLE `t_inapp_order` (
`idx` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '自增id', `idx` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`order_id` varchar(60) NOT NULL DEFAULT '' COMMENT '订单id', `order_id` varchar(60) NOT NULL DEFAULT '' COMMENT '订单id',
`sp_order_id` varchar(64) DEFAULT NULL COMMENT 'app store order_id', `sp_order_id` varchar(64) DEFAULT NULL COMMENT '渠道方订单id',
`account_id` varchar(60) NOT NULL DEFAULT '' COMMENT '账号id', `account_id` varchar(60) NOT NULL DEFAULT '' COMMENT '账号id',
`goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '物品id', `goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '物品id',
`status` int(11) NOT NULL DEFAULT '0' COMMENT 'status', `status` int(11) NOT NULL DEFAULT '0' COMMENT 'status',