diff options
author | Alexander Kampmann <programmer@nurfuerspam.de> | 2012-03-07 12:06:09 +0100 |
---|---|---|
committer | Alexander Kampmann <programmer@nurfuerspam.de> | 2012-03-07 12:06:09 +0100 |
commit | b2df1205ef805ab471a73f906d2eda5603a1aa66 (patch) | |
tree | 137e81ed5c1227bdd502156811e1ce85e3d23cdc /update.php | |
parent | fbc017cdba81fa7b159bca5fd0b3a4fb4885c5ad (diff) | |
parent | 0d9c2ca06f9394bc039a43410d3902338e8412a1 (diff) | |
download | volse-hubzilla-b2df1205ef805ab471a73f906d2eda5603a1aa66.tar.gz volse-hubzilla-b2df1205ef805ab471a73f906d2eda5603a1aa66.tar.bz2 volse-hubzilla-b2df1205ef805ab471a73f906d2eda5603a1aa66.zip |
merged
Diffstat (limited to 'update.php')
-rwxr-xr-x | update.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/update.php b/update.php index 6dbd410bc..c29394b48 100755 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1130 ); +define( 'UPDATE_VERSION' , 1131 ); /** * @@ -1116,4 +1116,9 @@ function update_1128() { function update_1129() { q("ALTER TABLE `notify` ADD `parent` INT NOT NULL AFTER `link` , ADD INDEX ( `parent` ), ADD INDEX ( `link` ), ADD INDEX ( `otype` ) "); -}
\ No newline at end of file +} + +function update_1130() { + q("ALTER TABLE `item` ADD `file` MEDIUMTEXT NOT NULL AFTER `inform`, ADD FULLTEXT KEY (`file`) "); +} + |