diff options
author | Friendika <info@friendika.com> | 2011-06-19 15:56:07 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-19 15:56:07 -0700 |
commit | 76ddbff0b5184c85be1e7ad2ffe6fb918ed65b65 (patch) | |
tree | 0e6d0aa962935aa4f522d9ac2eae2519ca7573ef /update.php | |
parent | d8e2dc23b9a62a2c5ab21eb13ab78340031ca051 (diff) | |
parent | 7c28e5893228320a2180a58aa68d913744d17e05 (diff) | |
download | volse-hubzilla-76ddbff0b5184c85be1e7ad2ffe6fb918ed65b65.tar.gz volse-hubzilla-76ddbff0b5184c85be1e7ad2ffe6fb918ed65b65.tar.bz2 volse-hubzilla-76ddbff0b5184c85be1e7ad2ffe6fb918ed65b65.zip |
Merge branch 'pull'
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 e1bc73619..541a12ef5 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1063 ); +define( 'UPDATE_VERSION' , 1064 ); /** * @@ -517,4 +517,7 @@ function update_1061() { function update_1062() { q("ALTER TABLE `user` ADD `prvnets` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `page-flags` "); } +function update_1063() { + q("ALTER TABLE `addon` ADD `plugin_admin` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `timestamp` "); +} |