summaryrefslogtreecommitdiffstats
path: root/lib/class
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-06-19 05:26:26 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-06-19 05:26:26 +0000
commitffcba7b2ca8aee6eac47181bf138b6b96590abaa (patch)
treea0aa890728e77c30ac9a6aac161e8365fa39e1bf /lib/class
parentde0deca8541332971fe5cfa57b5343c7c4ee8542 (diff)
downloadampache-ffcba7b2ca8aee6eac47181bf138b6b96590abaa.tar.gz
ampache-ffcba7b2ca8aee6eac47181bf138b6b96590abaa.tar.bz2
ampache-ffcba7b2ca8aee6eac47181bf138b6b96590abaa.zip
added code for new update, not enabled
Diffstat (limited to 'lib/class')
-rw-r--r--lib/class/update.class.php42
1 files changed, 39 insertions, 3 deletions
diff --git a/lib/class/update.class.php b/lib/class/update.class.php
index e6328838..79556491 100644
--- a/lib/class/update.class.php
+++ b/lib/class/update.class.php
@@ -197,7 +197,9 @@ class Update {
$version[] = array('version' => '340003','description' => $update_string);
- $update_string = '- Alter the Session.id to be VARCHAR(64) to account for all potential configs.<br />';
+ $update_string = '- Alter the Session.id to be VARCHAR(64) to account for all potential configs.<br />' .
+ '- Added new user_shout table for Sticky objects / shoutbox.<br />' .
+ '- Added new playlist preferences, and new preference catagory of playlist.<br />';
return $version;
@@ -619,7 +621,7 @@ class Update {
/* Add the playlist_method preference and remove it from the user table */
$sql = "INSERT INTO `preference` (`name`,`value`,`description`,`level`,`type`,`catagory`) " .
- "VALUES ('playlist_method','50','Playlist Method','5','string','streaming')";
+ "VALUES ('playlist_method','normal','Playlist Method','5','string','streaming')";
$db_results = Dba::query($sql);
$sql = "ALTER TABLE `update_info` ADD UNIQUE (`key`)";
@@ -645,11 +647,45 @@ class Update {
*/
public static function update_340004() {
-
/* Alter the session.id so that it's 64 */
$sql = "ALTER TABLE `session` CHANGE `id` `id` VARCHAR( 64 ) NOT NULL";
$db_results = Dba::query($sql);
+ /* Add Playlist Related Preferences */
+ $sql = "INSERT INTO `preference` (`name`,`value`,`description`,`level`,`type`,`catagory`) " .
+ "VALUES ('playlist_add','append','Add Behavior','5','string','playlist')";
+ $db_results = Dba::query($sql);
+
+ // Switch the existing preferences over to this new catagory
+ $sql = "UPDATE `preference` SET `catagory`='playlist' WHERE `name`='playlist_method' " .
+ " OR `name`='playlist_type'";
+ $db_results = Dba::query($sql);
+
+ // Change the default value for playlist_method
+ $sql = "UPDATE `preference` SET `value`='normal' WHERE `name`='playlist_method'";
+ $db_results = Dba::query($sql);
+
+ // Add in the shoutbox
+ $sql = "CREATE TABLE `user_shout` (`id` INT( 11 ) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY , " .
+ "`user` INT( 11 ) NOT NULL , " .
+ "`text` TEXT NOT NULL , " .
+ "`date` INT( 11 ) UNSIGNED NOT NULL , " .
+ "`sticky` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '0', " .
+ "`object_id` INT( 11 ) UNSIGNED NOT NULL , " .
+ "`object_type` VARCHAR( 32 ) NOT NULL " .
+ ") ENGINE = MYISAM";
+ $db_results = Dba::query($sql);
+
+ $sql = "ALTER TABLE `user_shout` ADD INDEX ( `sticky` )";
+ $db_results = Dba::query($sql);
+
+ $sql = "ALTER TABLE `user_shout` ADD INDEX ( `date` )";
+ $db_results = Dba::query($sql);
+
+ $sql = "ALTER TABLE `user_shout` ADD INDEX ( `user` )";
+ $db_results = Dba::query($sql);
+
+ // Update our database version now that we are all done
self::set_version('db_version','340004');
return true;