bookmarks + bug #140

This commit is contained in:
Friendika 2011-09-04 19:58:03 -07:00
commit 82f7f33cf5
9 changed files with 48 additions and 9 deletions

View file

@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1086 );
define( 'UPDATE_VERSION' , 1087 );
/**
*
@ -721,3 +721,8 @@ function update_1085() {
INDEX ( `term` )
) ENGINE = MYISAM ");
}
function update_1086() {
q("ALTER TABLE `item` ADD `bookmark` tinyint(1) NOT NULL DEFAULT '0' AFTER `starred` ");
}