diff options
Diffstat (limited to 'install/phpwebgallery_structure.sql')
-rw-r--r-- | install/phpwebgallery_structure.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/phpwebgallery_structure.sql b/install/phpwebgallery_structure.sql index 841aed340..e8f07334a 100644 --- a/install/phpwebgallery_structure.sql +++ b/install/phpwebgallery_structure.sql @@ -78,7 +78,7 @@ CREATE TABLE `phpwebgallery_comments` ( DROP TABLE IF EXISTS `phpwebgallery_config`; CREATE TABLE `phpwebgallery_config` ( `param` varchar(40) NOT NULL default '', - `value` varchar(255) default NULL, + `value` text, `comment` varchar(255) default NULL, PRIMARY KEY (`param`) ) TYPE=MyISAM COMMENT='configuration table'; |