aboutsummaryrefslogtreecommitdiffstats
path: root/install/db/33-database.php
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2009-01-06 21:31:04 +0000
committerplegall <plg@piwigo.org>2009-01-06 21:31:04 +0000
commit680efc25ed280394bc398b6ab66b8dbccb8f11d5 (patch)
tree65e1114fe12de372b1582299c56b44ab659e0577 /install/db/33-database.php
parent19d096853d16040892fefb9bbf1182b390e59fb1 (diff)
Code administration: convert all text files to Unix file format (CR as eol
and not CRLF) git-svn-id: http://piwigo.org/svn/branches/2.0@3054 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install/db/33-database.php')
-rw-r--r--install/db/33-database.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/install/db/33-database.php b/install/db/33-database.php
index 2a972f92f..4efd0f9ed 100644
--- a/install/db/33-database.php
+++ b/install/db/33-database.php
@@ -26,7 +26,7 @@ if (!defined('PHPWG_ROOT_PATH'))
die('Hacking attempt!');
}
-$upgrade_description = 'Add column #group.is_default';
+$upgrade_description = 'Add column #group.is_default';
include_once(PHPWG_ROOT_PATH.'include/constants.php');
@@ -35,12 +35,12 @@ include_once(PHPWG_ROOT_PATH.'include/constants.php');
// +-----------------------------------------------------------------------+
echo "Add column is_default on ".GROUPS_TABLE;
-$query = '
-alter table '.GROUPS_TABLE.' add column
-`is_default` enum(\'true\',\'false\') NOT NULL default \'false\'
-;';
-pwg_query($query);
-
+$query = '
+alter table '.GROUPS_TABLE.' add column
+`is_default` enum(\'true\',\'false\') NOT NULL default \'false\'
+;';
+pwg_query($query);
+
echo
"\n"