diff options
author | Friendika <info@friendika.com> | 2011-06-05 23:10:07 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-05 23:10:07 -0700 |
commit | 4c629e274bbf368e79e47133869c923a2e6dd4a9 (patch) | |
tree | 268e1a74bc51809ce10b9f84c6bb6dcafb60629b /update.php | |
parent | 18f4c6094acd65b9a0eb179f5228bf2e13713b5f (diff) | |
download | volse-hubzilla-4c629e274bbf368e79e47133869c923a2e6dd4a9.tar.gz volse-hubzilla-4c629e274bbf368e79e47133869c923a2e6dd4a9.tar.bz2 volse-hubzilla-4c629e274bbf368e79e47133869c923a2e6dd4a9.zip |
begin event module
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/update.php b/update.php index be1b184ae..be78f068f 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1060 ); +define( 'UPDATE_VERSION' , 1061 ); /** * @@ -506,3 +506,7 @@ function update_1059() { q("ALTER TABLE `queue` ADD `network` CHAR( 32 ) NOT NULL AFTER `cid` "); } +function update_1060() { + q("ALTER TABLE `event` ADD `uri` CHAR( 255 ) NOT NULL AFTER `cid` "); +} + |