From a58f0220ce68d07ce770a745a9e66cf48af53d07 Mon Sep 17 00:00:00 2001 From: chicpro Date: Fri, 17 Jan 2014 14:29:48 +0900 Subject: [PATCH] =?UTF-8?q?=EC=A3=BC=EB=AC=B8=20=EC=82=AD=EC=A0=9C=20?= =?UTF-8?q?=EB=82=B4=EC=97=AD=20=ED=85=8C=EC=9D=B4=EB=B8=94=EC=97=90=20?= =?UTF-8?q?=EB=B9=A0=EC=A7=84=20=ED=95=84=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install/gnuboard5shop.sql | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/install/gnuboard5shop.sql b/install/gnuboard5shop.sql index 55f8f4516..8e136507a 100644 --- a/install/gnuboard5shop.sql +++ b/install/gnuboard5shop.sql @@ -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;