|
发表于 2017-4-26 07:56:48
|
显示全部楼层
- DROP TABLE IF EXISTS `ffx_freeitem`;
- CREATE TABLE `ffx_freeitem` (
- `id` int(11) unsigned NOT NULL AUTO_INCREMENT PRIMARY KEY,
- `cid` smallint(5) unsigned NOT NULL DEFAULT '0',
- `fid` int(11) unsigned NOT NULL DEFAULT '0',
- `userid` int(11) unsigned NOT NULL DEFAULT '0',
- `sellerid` varchar(15) NOT NULL DEFAULT '',
- `itemid` varchar(20) NOT NULL DEFAULT '',
- `title` varchar(100) NOT NULL DEFAULT '',
- `pic_url` varchar(200) NOT NULL DEFAULT '',
- `price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00',
- `yprice` decimal(10,2) unsigned NOT NULL DEFAULT '0.00',
- `mbprice` decimal(10,2) unsigned NOT NULL DEFAULT '0.00',
- `reason` varchar(300) NOT NULL DEFAULT '',
- `orderclass` tinyint(1) unsigned NOT NULL DEFAULT '0',
- `inventory` int(11) unsigned NOT NULL DEFAULT '0',
- `freepost` tinyint(1) unsigned NOT NULL DEFAULT '0',
- `connectid` int(11) unsigned NOT NULL DEFAULT '0',
- `refuse` text NOT NULL,
- `start` int(11) unsigned NOT NULL DEFAULT '0',
- `end` int(11) unsigned NOT NULL DEFAULT '0',
- `status` tinyint(1) NOT NULL DEFAULT '0',
- `addtime` int(11) unsigned NOT NULL DEFAULT '0',
- `quanurl` varchar(500) NOT NULL DEFAULT '',
- `quanprice` decimal(10,2) NOT NULL DEFAULT '0.00'
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
复制代码 在 应用-数据库升级里面执行 默认密码是 wwwffxiacn
执行后免费商品会丢失
|
|