]> git.mxchange.org Git - friendica.git/commitdiff
roll update 1118 forward, enable update 1119
authorfriendica <info@friendica.com>
Sun, 5 Feb 2012 22:30:24 +0000 (14:30 -0800)
committerfriendica <info@friendica.com>
Sun, 5 Feb 2012 22:30:24 +0000 (14:30 -0800)
boot.php
update.php

index fc53a026db2de443a57d29f01a7ab39e63641bcf..a861dff678b2ba65f62b382efe2a72959872be0e 100755 (executable)
--- a/boot.php
+++ b/boot.php
@@ -11,7 +11,7 @@ require_once('include/cache.php');
 define ( 'FRIENDICA_PLATFORM',     'Friendica');
 define ( 'FRIENDICA_VERSION',      '2.3.1243' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.22'    );
-define ( 'DB_UPDATE_VERSION',      1119      );
+define ( 'DB_UPDATE_VERSION',      1120      );
 
 define ( 'EOL',                    "<br />\r\n"     );
 define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
index d0fe1645b139f34138e27ae63bfb7c3edc58f984..dc3cc0e562ddb93865a2b3b1ae2e0209a31a018c 100755 (executable)
@@ -1,6 +1,6 @@
 <?php
 
-define( 'UPDATE_VERSION' , 1119 );
+define( 'UPDATE_VERSION' , 1120 );
 
 /**
  *
@@ -1013,10 +1013,11 @@ INDEX ( `mid` )
 }
 
 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");
+       // rolled forward
 }
 
 function update_1119() {
+q("ALTER TABLE `contact` ADD `closeness` TINYINT( 2 ) NOT NULL DEFAULT '99' AFTER `reason` , ADD INDEX (`closeness`) ");
+q("update contact set closeness = 0 where self = 1");
 q("ALTER TABLE `item` ADD `spam` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `visible` , ADD INDEX (`spam`) ");
 }