85 lines
3.4 KiB
SQL
85 lines
3.4 KiB
SQL
-- MySQL dump 10.14 Distrib 5.5.41-MariaDB, for Linux (x86_64)
|
||
--
|
||
-- Host: localhost Database: marketdb
|
||
-- ------------------------------------------------------
|
||
-- Server version 5.5.41-MariaDB
|
||
|
||
--
|
||
-- Table structure for table `version`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `version`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!40101 SET character_set_client = utf8 */;
|
||
CREATE TABLE `version` (
|
||
`idx` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
||
`version` int(11) NOT NULL DEFAULT '0' COMMENT '版本号',
|
||
PRIMARY KEY (`idx`),
|
||
UNIQUE KEY `version` (`version`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Table structure for table `t_goods`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `t_goods`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!40101 SET character_set_client = utf8 */;
|
||
CREATE TABLE `t_goods` (
|
||
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
||
`goods_id` int(11) NOT NULL DEFAULT '0' COMMENT 'goods id',
|
||
`goods_idx` int(11) NOT NULL DEFAULT '0' COMMENT 'goods idx',
|
||
`item_id` int(11) NOT NULL DEFAULT '0' COMMENT '道具id',
|
||
`state` int(11) NOT NULL DEFAULT '0' COMMENT 'state 0:待支付 1:支付成功',
|
||
`buy_count` int(11) NOT NULL DEFAULT '0' COMMENT 'buy count',
|
||
`last_buyer` varchar(60) NOT NULL DEFAULT '' COMMENT '最后购买者',
|
||
`last_buy_time` int(11) NOT NULL DEFAULT '0' COMMENT '最后一次购买时间',
|
||
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
||
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
|
||
PRIMARY KEY (`idx`),
|
||
UNIQUE KEY `goods_id_goods_idx` (`goods_id`, `goods_idx`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Table structure for table `t_buy_record`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `t_buy_record`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!40101 SET character_set_client = utf8 */;
|
||
CREATE TABLE `t_buy_record` (
|
||
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
||
`buyer` varchar(60) NOT NULL DEFAULT '' COMMENT 'buyer',
|
||
`goods_id` int(11) NOT NULL DEFAULT '0' COMMENT 'goods id',
|
||
`goods_idx` int(11) NOT NULL DEFAULT '0' COMMENT 'goods idx',
|
||
`item_id` int(11) NOT NULL DEFAULT '0' COMMENT '道具id',
|
||
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
||
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
|
||
PRIMARY KEY (`idx`),
|
||
KEY `goods_id_goods_idx` (`goods_id`, `goods_idx`),
|
||
KEY `buyer` (`buyer`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
--
|
||
-- Table structure for table `t_nfts`
|
||
--
|
||
|
||
DROP TABLE IF EXISTS `t_nfts`;
|
||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
/*!40101 SET character_set_client = utf8 */;
|
||
CREATE TABLE `t_nfts` (
|
||
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
||
`token_id` varchar(60) NOT NULL DEFAULT '' COMMENT 'token_id',
|
||
`owner_id` varchar(255) NOT NULL DEFAULT '' COMMENT 'owner_id',
|
||
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
||
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
|
||
PRIMARY KEY (`idx`),
|
||
UNIQUE KEY `token_id` (`token_id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
||
-- Dump completed on 2015-08-19 18:51:22
|