From e042743f95e44e603a1b3ca650a7db89db2e7b3a Mon Sep 17 00:00:00 2001 From: thisgun Date: Fri, 14 Feb 2014 17:27:24 +0900 Subject: [PATCH] =?UTF-8?q?=EC=98=81=EC=B9=B4=ED=8A=B85=20=EC=9D=B8?= =?UTF-8?q?=EC=8A=A4=ED=86=A8=EC=8B=9C=20=ED=8C=9D=EC=97=85=EB=A0=88?= =?UTF-8?q?=EC=9D=B4=EC=96=B4=ED=85=8C=EC=9D=B4=EB=B8=94=20=ED=95=84?= =?UTF-8?q?=EB=93=9Cnw=5Fdivision=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adm/newwinlist.php | 1 + install/gnuboard5.sql | 1 + 2 files changed, 2 insertions(+) diff --git a/adm/newwinlist.php b/adm/newwinlist.php index 4f51abe70..ecc1217db 100644 --- a/adm/newwinlist.php +++ b/adm/newwinlist.php @@ -14,6 +14,7 @@ if(!sql_query(" DESCRIBE {$g5['new_win_table']} ", false)) { } else { $query_cp = sql_query(" CREATE TABLE IF NOT EXISTS `{$g5['new_win_table']}` ( `nw_id` int(11) NOT NULL AUTO_INCREMENT, + `nw_division` varchar(10) NOT NULL DEFAULT 'both', `nw_device` varchar(10) NOT NULL DEFAULT 'both', `nw_begin_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `nw_end_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', diff --git a/install/gnuboard5.sql b/install/gnuboard5.sql index e246d27ce..a180d229b 100644 --- a/install/gnuboard5.sql +++ b/install/gnuboard5.sql @@ -843,6 +843,7 @@ CREATE TABLE IF NOT EXISTS `g5_faq_master` ( DROP TABLE IF EXISTS `g5_new_win`; CREATE TABLE IF NOT EXISTS `g5_new_win` ( `nw_id` int(11) NOT NULL AUTO_INCREMENT, + `nw_division` varchar(10) NOT NULL DEFAULT 'both', `nw_device` varchar(10) NOT NULL DEFAULT 'both', `nw_begin_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `nw_end_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',