1
0
Fork 0

infrastructure for personalised @ tags (no UI/settings form yet), allow own comments through statusnet connector

This commit is contained in:
Friendika 2011-09-01 18:02:08 -07:00
commit a33edb0042
7 changed files with 19 additions and 9 deletions

View file

@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1084 );
define( 'UPDATE_VERSION' , 1085 );
/**
*
@ -706,4 +706,8 @@ function update_1083() {
`contact` INT NOT NULL
) ENGINE = MYISAM ;");
}
}
function update_1084() {
q("ALTER TABLE `contact` ADD `attag` CHAR( 255 ) NOT NULL AFTER `nick` ");
}