summaryrefslogtreecommitdiffstats
path: root/lib/class/update.class.php
diff options
context:
space:
mode:
authorPaul 'flowerysong' Arthur <flowerysong00@yahoo.com>2010-05-05 01:53:30 +0000
committerPaul 'flowerysong' Arthur <flowerysong00@yahoo.com>2010-05-05 01:53:30 +0000
commitb60419df857945888c9b2692081ea36adc9f20e3 (patch)
treec69278fc1a425672e8e23425cec70c322987c6f1 /lib/class/update.class.php
parent8e5b7fec1fdb58645c91017f524574ee5698fca7 (diff)
downloadampache-b60419df857945888c9b2692081ea36adc9f20e3.tar.gz
ampache-b60419df857945888c9b2692081ea36adc9f20e3.tar.bz2
ampache-b60419df857945888c9b2692081ea36adc9f20e3.zip
You know, maybe I shouldn't be allowed to use computers. Revert accidentally
committed hunk.
Diffstat (limited to 'lib/class/update.class.php')
-rw-r--r--lib/class/update.class.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/class/update.class.php b/lib/class/update.class.php
index b54def3e..a22bf8fe 100644
--- a/lib/class/update.class.php
+++ b/lib/class/update.class.php
@@ -1915,23 +1915,5 @@ class Update {
} // update_360003
- /**
- * update_360003
- * This update adds the search table
- */
- public static function update_360003_b() {
- $sql = "CREATE TABLE `search` (" .
- "`id` INT( 11 ) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ," .
- "`user` INT( 11 ) NOT NULL ," .
- "`type` ENUM('private','public') DEFAULT NULL ," .
- "`rules` VARCHAR( 65535 ) NOT NULL ," .
- "`name` VARCHAR( 255 ) NOT NULL ," .
- "`logic_operator` VARCHAR(3) NOT NULL " .
- ") ENGINE = MYISAM ";
- $db_results = Dba::write($sql);
-
- self::set_version('db_version','360003');
- } // update_360003
-
} // end update class
?>