diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-03-18 21:14:21 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-03-18 21:14:21 +0000 |
commit | 6ff9ca0a9e2a5a5ecfd97942eabc996e27735c81 (patch) | |
tree | d85fe2c7339789378e2bb52496b2c297c901490e /lib/class/update.class.php | |
parent | c31be1e56af311204098ce603f5600b44e611b27 (diff) | |
download | ampache-6ff9ca0a9e2a5a5ecfd97942eabc996e27735c81.tar.gz ampache-6ff9ca0a9e2a5a5ecfd97942eabc996e27735c81.tar.bz2 ampache-6ff9ca0a9e2a5a5ecfd97942eabc996e27735c81.zip |
move server prefs to admin menu (Thx geekdawg) fix missing web_path on radio creation link
Diffstat (limited to 'lib/class/update.class.php')
-rw-r--r-- | lib/class/update.class.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/class/update.class.php b/lib/class/update.class.php index 938d979c..08ce02d1 100644 --- a/lib/class/update.class.php +++ b/lib/class/update.class.php @@ -1411,7 +1411,7 @@ class Update { public static function update_350002() { $sql = "CREATE TABLE `tmp_browse` (`sid` varchar(128) collate utf8_unicode_ci NOT NULL,`data` longtext collate utf8_unicode_ci NOT NULL," . - " UNIQUE KEY `sid` (`sid`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci"; + " UNIQUE KEY `sid` (`sid`)) ENGINE=MyISAM"; $db_results = Dba::write($sql); $sql = "ALTER TABLE `tmp_browse` ADD INDEX ( `type` )"; @@ -1421,7 +1421,7 @@ class Update { $db_results = Dba::write($sql); $sql = "CREATE TABLE `user_catalog` (`user` INT( 11 ) UNSIGNED NOT NULL ,`catalog` INT( 11 ) UNSIGNED NOT NULL ,`level` SMALLINT( 4 ) UNSIGNED NOT NULL DEFAULT '5', " . - "INDEX ( `user` )) ENGINE = MYISAM CHARACTER SET utf8 COLLATE utf8_unicode_ci"; + "INDEX ( `user` )) ENGINE = MYISAM"; $db_results = Dba::write($sql); $sql = "ALTER TABLE `user_catalog` ADD INDEX ( `catalog` )"; |