diff options
author | friendica <info@friendica.com> | 2012-02-27 23:27:16 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-27 23:27:16 -0800 |
commit | 53412dacd4cb52f0c1162af7ba66aa01f71147b3 (patch) | |
tree | 8d6792d5e06efae2b26ae0a70696cd6278d57a6c /update.php | |
parent | 2b730ae86d1b49edda74aa6cbb0f9ed3a008ed13 (diff) | |
download | volse-hubzilla-53412dacd4cb52f0c1162af7ba66aa01f71147b3.tar.gz volse-hubzilla-53412dacd4cb52f0c1162af7ba66aa01f71147b3.tar.bz2 volse-hubzilla-53412dacd4cb52f0c1162af7ba66aa01f71147b3.zip |
update globaldir when page-type changes, add spam date field
Diffstat (limited to 'update.php')
-rwxr-xr-x | update.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/update.php b/update.php index 865c6175e..8ca5ef90b 100755 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1128 ); +define( 'UPDATE_VERSION' , 1129 ); /** * @@ -1109,3 +1109,8 @@ 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` "); +} + |