1
1
Fork 0

implement "moderate" flag on items

This commit is contained in:
friendica 2012-01-23 20:56:11 -08:00
commit a76a497d92
17 changed files with 41 additions and 36 deletions

View file

@ -1,6 +1,6 @@
<?php
define( 'UPDATE_VERSION' , 1115 );
define( 'UPDATE_VERSION' , 1116 );
/**
*
@ -990,3 +990,8 @@ INDEX ( `stat` )
) ENGINE = MYISAM ");
}
function update_1115() {
q("ALTER TABLE `item` ADD `moderated` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `pubmail`,
ADD INDEX (`moderated`) ");
}