]> git.mxchange.org Git - friendica.git/commitdiff
add spam flag to item table, DB version not incremented yet, give large sites a heads...
authorfriendica <info@friendica.com>
Thu, 2 Feb 2012 02:50:11 +0000 (18:50 -0800)
committerfriendica <info@friendica.com>
Thu, 2 Feb 2012 02:50:11 +0000 (18:50 -0800)
update.php

index e0591a3b3775927695e7d97fd684e92fd422deb4..d0fe1645b139f34138e27ae63bfb7c3edc58f984 100755 (executable)
@@ -1016,3 +1016,7 @@ function update_1118() {
 q("ALTER TABLE `contact` ADD `closeness` TINYINT( 2 ) NOT NULL DEFAULT '99' AFTER `reason` , ADD INDEX (`closensss`) ");
 q("update contact set closeness = 0 where self = 1");
 }
+
+function update_1119() {
+q("ALTER TABLE `item` ADD `spam` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `visible` , ADD INDEX (`spam`) ");
+}