diff options
author | Michael Vogel <icarus@dabo.de> | 2012-03-09 11:41:23 +0100 |
---|---|---|
committer | Michael Vogel <icarus@dabo.de> | 2012-03-09 11:41:23 +0100 |
commit | 11c29e0cba4f521c5f37d963109c4807af8bccae (patch) | |
tree | 3dde72ce8528cfa9cc6111098585623b5971b605 /update.php | |
parent | 52ea842e872cc004fd012496c828e9fb6186bec9 (diff) | |
parent | 2ce78253aeda8672e12f18f0963f52cd4a35e546 (diff) | |
download | volse-hubzilla-11c29e0cba4f521c5f37d963109c4807af8bccae.tar.gz volse-hubzilla-11c29e0cba4f521c5f37d963109c4807af8bccae.tar.bz2 volse-hubzilla-11c29e0cba4f521c5f37d963109c4807af8bccae.zip |
Merge commit 'upstream/master'
Diffstat (limited to 'update.php')
-rwxr-xr-x | update.php | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/update.php b/update.php index 865c6175e..c29394b48 100755 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1128 ); +define( 'UPDATE_VERSION' , 1131 ); /** * @@ -1109,3 +1109,16 @@ function update_1127() { ) ENGINE = MyISAM DEFAULT CHARSET=utf8"); } + +function update_1128() { + q("alter table spam add `date` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `term` "); +} + +function update_1129() { + q("ALTER TABLE `notify` ADD `parent` INT NOT NULL AFTER `link` , ADD INDEX ( `parent` ), ADD INDEX ( `link` ), ADD INDEX ( `otype` ) "); +} + +function update_1130() { + q("ALTER TABLE `item` ADD `file` MEDIUMTEXT NOT NULL AFTER `inform`, ADD FULLTEXT KEY (`file`) "); +} + |