diff options
author | Friendika <info@friendika.com> | 2011-06-07 20:10:43 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-07 20:10:43 -0700 |
commit | 33fe26ecb01ec009a639c4c8fdfc4f93b2bd34ac (patch) | |
tree | 5bbb388dccbe87c1f34a61ee9de589ad8332c907 /update.php | |
parent | d1e9af2c51d6b12d400a656f489520ccd8d54ed2 (diff) | |
download | volse-hubzilla-33fe26ecb01ec009a639c4c8fdfc4f93b2bd34ac.tar.gz volse-hubzilla-33fe26ecb01ec009a639c4c8fdfc4f93b2bd34ac.tar.bz2 volse-hubzilla-33fe26ecb01ec009a639c4c8fdfc4f93b2bd34ac.zip |
more progress on events
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 be78f068f..dfc5f88c9 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1061 ); +define( 'UPDATE_VERSION' , 1062 ); /** * @@ -510,3 +510,6 @@ function update_1060() { q("ALTER TABLE `event` ADD `uri` CHAR( 255 ) NOT NULL AFTER `cid` "); } +function update_1061() { + q("ALTER TABLE `event` ADD `nofinish` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `type` "); +} |