summaryrefslogtreecommitdiffstats
path: root/lib/class/update.class.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-03-18 21:14:21 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-03-18 21:14:21 +0000
commit6ff9ca0a9e2a5a5ecfd97942eabc996e27735c81 (patch)
treed85fe2c7339789378e2bb52496b2c297c901490e /lib/class/update.class.php
parentc31be1e56af311204098ce603f5600b44e611b27 (diff)
downloadampache-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.php4
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` )";