From 8a29052708fb9f3095c6270f538c308e2a707223 Mon Sep 17 00:00:00 2001 From: byends Date: Tue, 10 Dec 2013 22:45:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=AE=89=E8=A3=85=E6=97=B6?= =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=8E=9F=E6=9C=89=E6=95=B0=E6=8D=AE=E8=A1=A8?= =?UTF-8?q?=E5=A4=B1=E8=B4=A5=E8=80=8C=E6=97=A0=E7=BB=A7=E7=BB=AD=E5=AE=89?= =?UTF-8?q?=E8=A3=85=E7=9A=84BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.php b/install.php index 5baa086d..712027d2 100644 --- a/install.php +++ b/install.php @@ -368,7 +368,7 @@ list($prefixVersion, $suffixVersion) = explode('/', $currentVersion); if(_r('delete')) { //删除原有数据 $dbPrefix = $config['prefix']; - $tableArray = array($dbPrefix . 'comments', $dbPrefix . 'contents', $dbPrefix . 'metas', $dbPrefix . 'options', $dbPrefix . 'relationships', $dbPrefix . 'users',); + $tableArray = array($dbPrefix . 'comments', $dbPrefix . 'contents', $dbPrefix . 'fields', $dbPrefix . 'metas', $dbPrefix . 'options', $dbPrefix . 'relationships', $dbPrefix . 'users',); foreach($tableArray as $table) { if($type == 'Mysql') { $installDb->query("DROP TABLE IF EXISTS `{$table}`");