summaryrefslogtreecommitdiffstats
path: root/lib/class/update.class.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-03-10 05:24:59 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-03-10 05:24:59 +0000
commit311ac991126f68b12a6a29747091544de4acf6a1 (patch)
tree3e52ca25f8ba905e635c996cf31eafaff599ddde /lib/class/update.class.php
parent01a5512c04512a0d08d8de05705d87d6c9fe46d3 (diff)
downloadampache-311ac991126f68b12a6a29747091544de4acf6a1.tar.gz
ampache-311ac991126f68b12a6a29747091544de4acf6a1.tar.bz2
ampache-311ac991126f68b12a6a29747091544de4acf6a1.zip
minor fixes to the playlist, fixed up the democratic playlist kinda, still does not work completely
Diffstat (limited to 'lib/class/update.class.php')
-rw-r--r--lib/class/update.class.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/class/update.class.php b/lib/class/update.class.php
index 924e87e7..42cd9b86 100644
--- a/lib/class/update.class.php
+++ b/lib/class/update.class.php
@@ -1158,5 +1158,19 @@ class Update {
} // update_340016
+ /**
+ * update_340017
+ * This finalizes the democratic table.
+ */
+ public static function update_340017() {
+
+ $sql = "ALTER TABLE `democratic` ADD `base_playlist` INT( 11 ) UNSIGNED NOT NULL AFTER `name`";
+ $db_results = Dba::query($sql);
+
+ self::set_version('db_version','340017');
+
+
+ } // update_340017
+
} // end update class
?>