diff options
author | Friendika <info@friendika.com> | 2010-11-03 16:48:21 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-03 16:48:21 -0700 |
commit | a985ad4a5407c3cbc0d0a3919e19ddd99bf108af (patch) | |
tree | 8d4cc4b5e0cd4d452c571ea41e8f32e81127b028 /update.php | |
parent | 98a508532f0f3ea35748fa650aa3cad5e929e3de (diff) | |
download | volse-hubzilla-a985ad4a5407c3cbc0d0a3919e19ddd99bf108af.tar.gz volse-hubzilla-a985ad4a5407c3cbc0d0a3919e19ddd99bf108af.tar.bz2 volse-hubzilla-a985ad4a5407c3cbc0d0a3919e19ddd99bf108af.zip |
add activity target to items, allow multiple link relations
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/update.php b/update.php index 9c5caa0b5..68367343d 100644 --- a/update.php +++ b/update.php @@ -96,4 +96,9 @@ function update_1011() { function update_1012() { q("ALTER TABLE `item` ADD `inform` MEDIUMTEXT NOT NULL AFTER `tag` "); -}
\ No newline at end of file +} + +function update_1013() { + q("ALTER TABLE `item` ADD `target-type` CHAR( 255 ) NOT NULL + AFTER `object` , ADD `target` TEXT NOT NULL AFTER `target-type`"); +}
\ No newline at end of file |