주문 삭제 내역 테이블에 빠진 필드 추가

This commit is contained in:
chicpro
2014-01-17 14:29:48 +09:00
parent 5751a7560f
commit a58f0220ce

View File

@ -699,8 +699,11 @@ CREATE TABLE IF NOT EXISTS `g5_shop_order_address` (
DROP TABLE IF EXISTS `g5_shop_order_delete`;
CREATE TABLE IF NOT EXISTS `g5_shop_order_delete` (
`de_id` int(11) NOT NULL AUTO_INCREMENT,
`de_key` varchar(255) NOT NULL,
`de_data` longtext NOT NULL,
`de_key` varchar(255) NOT NULL DEFAULT '',
`de_data` longtext NOT NULL DEFAULT '',
`mb_id` varchar(20) NOT NULL DEFAULT '',
`de_ip` varchar(255) NOT NULL DEFAULT '',
`de_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`de_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;