1
1
Fork 0

extensible notify structure

This commit is contained in:
friendica 2012-01-01 22:44:03 -08:00
commit d52f833c5f
3 changed files with 10 additions and 3 deletions

View file

@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1113 );
define( 'UPDATE_VERSION' , 1114 );
/**
*
@ -966,4 +966,9 @@ function update_1112() {
q("ALTER TABLE `notify` ADD INDEX ( `type` ), ADD INDEX ( `uid`), ADD INDEX (`seen`), ADD INDEX (`date`) ");
}
}
function update_1113() {
q("ALTER TABLE `notify` ADD `verb` CHAR( 255 ) NOT NULL ,
ADD `otype` CHAR( 16 ) NOT NULL");
}