Created
February 14, 2016 08:22
-
-
Save htom78/dd33bf2a105c823ce7cb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE `ims_ewei_shop_member` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`uniacid` int(11) DEFAULT '0', | |
`uid` int(11) DEFAULT '0', | |
`groupid` int(11) DEFAULT '0', | |
`level` int(11) DEFAULT '0', | |
`agentid` int(11) DEFAULT '0', | |
`openid` varchar(50) DEFAULT '', | |
`realname` varchar(20) DEFAULT '', | |
`mobile` varchar(11) DEFAULT '', | |
`pwd` varchar(20) DEFAULT '', | |
`weixin` varchar(100) DEFAULT '', | |
`commission` decimal(10,2) DEFAULT '0.00', | |
`commission_pay` decimal(10,2) DEFAULT '0.00', | |
`content` text, | |
`createtime` int(10) DEFAULT '0', | |
`agenttime` int(10) DEFAULT '0', | |
`status` tinyint(1) DEFAULT '0', | |
`isagent` tinyint(1) DEFAULT '0', | |
`clickcount` int(11) DEFAULT '0', | |
`agentlevel` int(11) DEFAULT '0', | |
`noticeset` text, | |
`nickname` varchar(255) DEFAULT '', | |
`credit1` int(11) DEFAULT '0', | |
`credit2` decimal(10,2) DEFAULT '0.00', | |
`birthyear` varchar(255) DEFAULT '', | |
`birthmonth` varchar(255) DEFAULT '', | |
`birthday` varchar(255) DEFAULT '', | |
`gender` tinyint(3) DEFAULT '0', | |
`avatar` varchar(255) DEFAULT '', | |
`province` varchar(255) DEFAULT '', | |
`city` varchar(255) DEFAULT '', | |
`area` varchar(255) DEFAULT '', | |
`childtime` int(11) DEFAULT '0', | |
`inviter` int(11) DEFAULT '0', | |
`agentnotupgrade` tinyint(3) DEFAULT '0', | |
`agentselectgoods` tinyint(3) DEFAULT '0', | |
`agentblack` tinyint(3) DEFAULT '0', | |
PRIMARY KEY (`id`), | |
KEY `idx_uniacid` (`uniacid`), | |
KEY `idx_shareid` (`agentid`), | |
KEY `idx_openid` (`openid`), | |
KEY `idx_status` (`status`), | |
KEY `idx_agenttime` (`agenttime`), | |
KEY `idx_isagent` (`isagent`), | |
KEY `idx_uid` (`uid`), | |
KEY `idx_groupid` (`groupid`), | |
KEY `idx_level` (`level`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment