diff options
author | Friendika <info@friendika.com> | 2011-10-14 00:20:37 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-14 00:20:37 -0700 |
commit | af6ab381000346f487d1b5b07623510640dd7ee5 (patch) | |
tree | 4cbe000aa2f095a01a7439bb07d793b2fc04b364 /update.php | |
parent | 05e26e489580c82d0db237771d159aed287c5f9b (diff) | |
download | volse-hubzilla-af6ab381000346f487d1b5b07623510640dd7ee5.tar.gz volse-hubzilla-af6ab381000346f487d1b5b07623510640dd7ee5.tar.bz2 volse-hubzilla-af6ab381000346f487d1b5b07623510640dd7ee5.zip |
diaspora birthday notifications
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 5d5190095..06bbb8b41 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1095 ); +define( 'UPDATE_VERSION' , 1096 ); /** * @@ -791,3 +791,7 @@ function update_1093() { function update_1094() { q("ALTER TABLE `item` ADD `postopts` TEXT NOT NULL AFTER `target` "); } + +function update_1095() { + q("ALTER TABLE `contact` ADD `bd` DATE NOT NULL AFTER `bdyear` "); +} |