2 Star 1 Fork 2

index/ewei_shop

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
upgrade.php 5.44 KB
一键复制 编辑 原始数据 按行查看 历史
index 提交于 2017-04-07 19:31 . 就近商城
<?php
$sql = "
CREATE TABLE IF NOT EXISTS `ims_ewei_shop_creditshop_adv` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uniacid` int(11) DEFAULT '0',
`advname` varchar(50) DEFAULT '',
`link` varchar(255) DEFAULT '',
`thumb` varchar(255) DEFAULT '',
`displayorder` int(11) DEFAULT '0',
`enabled` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `idx_uniacid` (`uniacid`),
KEY `idx_enabled` (`enabled`),
KEY `idx_displayorder` (`displayorder`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
CREATE TABLE IF NOT EXISTS `ims_ewei_shop_creditshop_category` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uniacid` int(11) DEFAULT '0' COMMENT '所属帐号',
`name` varchar(50) DEFAULT NULL COMMENT '分类名称',
`thumb` varchar(255) DEFAULT NULL COMMENT '分类图片',
`displayorder` tinyint(3) unsigned DEFAULT '0' COMMENT '排序',
`enabled` tinyint(1) DEFAULT '1' COMMENT '是否开启',
`advimg` varchar(255) DEFAULT '',
`advurl` varchar(500) DEFAULT '',
`isrecommand` tinyint(3) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `idx_uniacid` (`uniacid`),
KEY `idx_displayorder` (`displayorder`),
KEY `idx_enabled` (`enabled`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
CREATE TABLE IF NOT EXISTS `ims_ewei_shop_creditshop_goods` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uniacid` int(11) DEFAULT '0',
`displayorder` int(11) DEFAULT '0',
`title` varchar(255) DEFAULT '',
`cate` int(11) DEFAULT '0',
`thumb` varchar(255) DEFAULT '',
`price` decimal(10,2) DEFAULT '0.00',
`type` tinyint(3) DEFAULT '0',
`credit` int(11) DEFAULT '0',
`money` decimal(10,2) DEFAULT '0.00',
`total` int(11) DEFAULT '0',
`totalday` int(11) DEFAULT '0',
`chance` int(11) DEFAULT '0',
`chanceday` int(11) DEFAULT '0',
`detail` text,
`rate1` int(11) DEFAULT '0',
`rate2` int(11) DEFAULT '0',
`endtime` int(11) DEFAULT '0',
`joins` int(11) DEFAULT '0',
`views` int(11) DEFAULT '0',
`createtime` int(11) DEFAULT '0',
`status` tinyint(3) DEFAULT '0',
`deleted` tinyint(3) DEFAULT '0',
`showlevels` text,
`buylevels` text,
`showgroups` text,
`buygroups` text,
`vip` tinyint(3) DEFAULT '0',
`istop` tinyint(3) DEFAULT '0',
`isrecommand` tinyint(3) DEFAULT '0',
`istime` tinyint(3) DEFAULT '0',
`timestart` int(11) DEFAULT '0',
`timeend` int(11) DEFAULT '0',
`share_title` varchar(255) DEFAULT '',
`share_icon` varchar(255) DEFAULT '',
`share_desc` varchar(500) DEFAULT '',
`followneed` tinyint(3) DEFAULT '0',
`followtext` varchar(255) DEFAULT '',
`subtitle` varchar(255) DEFAULT '',
`subdetail` text,
`noticedetail` text,
`usedetail` varchar(255) DEFAULT '',
`goodsdetail` text,
`isendtime` tinyint(3) DEFAULT '0',
`usecredit2` tinyint(3) DEFAULT '0',
`area` varchar(255) DEFAULT '',
`dispatch` decimal(10,2) DEFAULT '0.00',
`storeids` text,
`noticeopenid` varchar(255) DEFAULT '',
`noticetype` tinyint(3) DEFAULT '0',
`isverify` tinyint(3) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `idx_uniacid` (`uniacid`),
KEY `idx_type` (`type`),
KEY `idx_endtime` (`endtime`),
KEY `idx_createtime` (`createtime`),
KEY `idx_status` (`status`),
KEY `idx_displayorder` (`displayorder`),
KEY `idx_deleted` (`deleted`),
KEY `idx_istop` (`istop`),
KEY `idx_isrecommand` (`isrecommand`),
KEY `idx_istime` (`istime`),
KEY `idx_timestart` (`timestart`),
KEY `idx_timeend` (`timeend`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
CREATE TABLE IF NOT EXISTS `ims_ewei_shop_creditshop_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uniacid` int(11) DEFAULT '0',
`logno` varchar(255) DEFAULT '',
`eno` varchar(255) DEFAULT '' COMMENT '兑换码',
`openid` varchar(255) DEFAULT '',
`goodsid` int(11) DEFAULT '0',
`createtime` int(11) DEFAULT '0',
`status` tinyint(3) DEFAULT '0' COMMENT '0 只生成记录未参加 1 未中奖 2 已中奖 3 已发奖',
`paystatus` tinyint(3) DEFAULT '0' COMMENT '支付状态 -1 不需要支付 0 未支付 1 已支付',
`paytype` tinyint(3) DEFAULT '-1' COMMENT '支付类型 -1 不需要支付 0 余额 1 微信',
`dispatchstatus` tinyint(3) DEFAULT '0' COMMENT '运费状态 -1 不需要运费 0 未支付 1 已支付',
`creditpay` tinyint(3) DEFAULT '0' COMMENT '积分支付 0 未支付 1 已支付',
`addressid` int(11) DEFAULT '0' COMMENT '收货地址',
`dispatchno` varchar(255) DEFAULT '' COMMENT '运费支付单号',
`usetime` int(11) DEFAULT '0',
`express` varchar(255) DEFAULT '',
`expresssn` varchar(255) DEFAULT '',
`expresscom` varchar(255) DEFAULT '',
`verifyopenid` varchar(255) DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
INSERT INTO `ims_ewei_shop_plugin` (`id`, `displayorder`, `identity`, `name`, `version`, `author`, `status`) VALUES
(10, 10, 'creditshop', '积分商城', '1.0', '官方', '1');
";
pdo_query($sql);
if(!pdo_fieldexists('ewei_shop_order', 'verifycode')) {
pdo_query("ALTER TABLE ".tablename('ewei_shop_order')." ADD `verifycode` varchar(255) DEFAULT '';");
}
if(pdo_fieldexists('ewei_shop_order', 'verifycode')) {
pdo_query("ALTER TABLE ".tablename('ewei_shop_order')." CHANGE `verifycode` `verifycode` text;");
}
if(!pdo_fieldexists('ewei_shop_member', 'commission')) {
pdo_query("ALTER TABLE ".tablename('ewei_shop_member')." ADD `commission` decimal(10,2) DEFAULT '0.00';");
}
if(!pdo_fieldexists('ewei_shop_member', 'commission_pay')) {
pdo_query("ALTER TABLE ".tablename('ewei_shop_member')." ADD `commission_pay` decimal(10,2) DEFAULT '0.00';");
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhh.china.com/ewei_shop.git
git@gitee.com:zhh.china.com/ewei_shop.git
zhh.china.com
ewei_shop
ewei_shop
master

搜索帮助