aboutsummaryrefslogtreecommitdiffstats
path: root/install/db/101-database.php
diff options
context:
space:
mode:
authormistic100 <mistic@piwigo.org>2011-04-12 20:07:14 +0000
committermistic100 <mistic@piwigo.org>2011-04-12 20:07:14 +0000
commitc01d0c1790613fd73efc3c78d0c12debdfb1cbc7 (patch)
tree84986d915fa415855624b8b8ccba00cb6ee2c20a /install/db/101-database.php
parent42324452602d2d53a560af5b328e97ed45d0e69a (diff)
bug:2224 change nb_image_page into smallint(3)
git-svn-id: http://piwigo.org/svn/trunk@10341 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install/db/101-database.php')
-rw-r--r--install/db/101-database.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/db/101-database.php b/install/db/101-database.php
index 0fa8403be..8f37061f9 100644
--- a/install/db/101-database.php
+++ b/install/db/101-database.php
@@ -33,7 +33,7 @@ if ('mysql' == $conf['dblayer'])
{
pwg_query('
ALTER TABLE '.USER_INFOS_TABLE.'
- ADD COLUMN `nb_image_page` tinyint(3) unsigned NOT NULL default \'15\'
+ ADD COLUMN `nb_image_page` smallint(3) unsigned NOT NULL default \'15\'
;');
}
else if (in_array($conf['dblayer'], array('pgsql', 'sqlite', 'pdo-sqlite')))