diff options
author | Friendika <info@friendika.com> | 2011-09-18 22:42:47 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-18 22:42:47 -0700 |
commit | 672ecc7f7d2e17b0d35eccc94e6fa1b5eef0d108 (patch) | |
tree | 92e9fefe146ce991778538d29fcebac8b60722f3 /update.php | |
parent | 48ee3fa3b9c540185fb3691ce6a971dd2cf1fd68 (diff) | |
download | volse-hubzilla-672ecc7f7d2e17b0d35eccc94e6fa1b5eef0d108.tar.gz volse-hubzilla-672ecc7f7d2e17b0d35eccc94e6fa1b5eef0d108.tar.bz2 volse-hubzilla-672ecc7f7d2e17b0d35eccc94e6fa1b5eef0d108.zip |
more tag infrastructure
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/update.php b/update.php index 6101efea6..94d0b6274 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1089 ); +define( 'UPDATE_VERSION' , 1090 ); /** * @@ -750,3 +750,6 @@ function update_1088() { ADD `expire_notification_sent` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `account_expires_on` "); } +function update_1089() { + q("ALTER TABLE `user` ADD `blocktags` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `hidewall` "); +} |