[UPDATE] Update SQL file and updated base structure

This commit is contained in:
Sebastian Grewe 2013-10-29 15:42:50 +01:00
parent ef5ac9cbfd
commit 861172e6f8
2 changed files with 2 additions and 1 deletions

View File

@ -121,7 +121,7 @@ CREATE TABLE IF NOT EXISTS `pool_worker` (
CREATE TABLE IF NOT EXISTS `settings` (
`name` varchar(255) NOT NULL,
`value` varchar(255) DEFAULT NULL,
`value` text DEFAULT NULL,
PRIMARY KEY (`name`),
UNIQUE KEY `setting` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@ -0,0 +1 @@
ALTER TABLE `settings` CHANGE `value` `value` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL ;