주문 취소 요청 기능 제거

This commit is contained in:
chicpro
2013-09-10 16:34:22 +09:00
parent d5c6b69843
commit 61ee0113fb
12 changed files with 106 additions and 1603 deletions

View File

@ -667,34 +667,6 @@ CREATE TABLE IF NOT EXISTS `shop_personalpay` (
-- --------------------------------------------------------
--
-- Table structure for table `shop_request`
--
DROP TABLE IF EXISTS `shop_request`;
CREATE TABLE IF NOT EXISTS `shop_request` (
`rq_id` INT(11) NOT NULL AUTO_INCREMENT,
`rq_type` TINYINT(4) NOT NULL DEFAULT '0',
`rq_parent` INT(11) NOT NULL DEFAULT '0',
`od_id` BIGINT(20) unsigned NOT NULL,
`ct_id` VARCHAR(255) NOT NULL DEFAULT '',
`mb_id` VARCHAR(255) NOT NULL DEFAULT '',
`rq_content` TEXT NOT NULL,
`rq_status` TINYINT(4) NOT NULL DEFAULT '0',
`rq_item` TEXT NOT NULL,
`dl_company` INT(11) NOT NULL DEFAULT '0',
`rq_invoice` VARCHAR(255) NOT NULL DEFAULT '',
`rq_amount1` INT(11) NOT NULL DEFAULT '0',
`rq_amount2` INT(11) NOT NULL DEFAULT '0',
`rq_amount3` INT(11) NOT NULL DEFAULT '0',
`rq_account` VARCHAR(255) NOT NULL DEFAULT '',
`rq_ip` VARCHAR(255) NOT NULL DEFAULT '',
`rq_time` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`rq_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `shop_sendcost`
--