diff --git a/sql/paydb.sql b/sql/paydb.sql index a1322d0..2a46fa9 100644 --- a/sql/paydb.sql +++ b/sql/paydb.sql @@ -79,6 +79,23 @@ CREATE TABLE `orderinfo` ( ) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin; /*!40101 SET character_set_client = @saved_cs_client */; +-- +-- Table structure for table `confirmed_order` +-- + +DROP TABLE IF EXISTS `confirmed_order`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `confirmed_order` ( + `idx` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id', + `orderid` varchar(60) DEFAULT '' COMMENT '订单id', + `status` int(11) NOT NULL DEFAULT '0' COMMENT '0: 新添加订单 1:已经完成订单', + `createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间', + PRIMARY KEY (`idx`), + KEY `orderid` (`orderid`) +) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin; +/*!40101 SET character_set_client = @saved_cs_client */; + -- -- Table structure for table `notify_his` --