#252 주문취소 요청 기능 추가중

This commit is contained in:
chicpro
2013-07-11 14:29:15 +09:00
parent a16e62a5da
commit 75ac8f7a66
5 changed files with 203 additions and 2 deletions

View File

@ -657,6 +657,35 @@ CREATE TABLE IF NOT EXISTS `shop_mileage` (
-- --------------------------------------------------------
--
-- 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',
`od_id` BIGINT(20) unsigned NOT NULL,
`ct_id` VARCHAR(255) NOT NULL DEFAULT '',
`mb_id` VARCHAR(20) NOT NULL DEFAULT '',
`rq_content` TEXT NOT NULL,
`rq_reg_time` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
`rq_ip` VARCHAR(255) NOT NULL DEFAULT '',
`rq_status` TINYINT(4) NOT NULL DEFAULT '0',
`rq_item` TEXT NOT NULL,
`rq_recv` TINYINT(4) NOT NULL DEFAULT '0',
`dl_company` INT(11) NOT NULL DEFAULT '0',
`rq_invoice` VARCHAR(255) NOT NULL DEFAULT '0',
`rq_amount1` INT(11) NOT NULL DEFAULT '0',
`rq_amount2` INT(11) NOT NULL DEFAULT '0',
`rq_account` VARCHAR(255) NOT NULL DEFAULT '0',
`rq_process` TEXT NOT NULL,
`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`
--