]> git.mxchange.org Git - friendica.git/commitdiff
database updates
authorZach Prezkuta <fermion@gmx.com>
Sun, 3 Jun 2012 20:52:42 +0000 (14:52 -0600)
committerZach Prezkuta <fermion@gmx.com>
Sun, 3 Jun 2012 20:53:30 +0000 (14:53 -0600)
boot.php
database.sql
update.php

index 559cd8c327ee12206b6aff8d1b4e4f3d47299755..742948f7bfa510886e55dc456b200a9bb328acd7 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -11,7 +11,7 @@ require_once('include/cache.php');
 define ( 'FRIENDICA_PLATFORM',     'Friendica');
 define ( 'FRIENDICA_VERSION',      '3.0.1362' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
-define ( 'DB_UPDATE_VERSION',      1147      );
+define ( 'DB_UPDATE_VERSION',      1148      );
 
 define ( 'EOL',                    "<br />\r\n"     );
 define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
index b20846bad53552c001736d9ff4eb40c6f0495f1b..c1d1b27e4ee865213533879dc5b5482933e1a550 100644 (file)
@@ -944,12 +944,14 @@ CREATE TABLE IF NOT EXISTS `session` (
 
 CREATE TABLE IF NOT EXISTS `sign` (
   `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
-  `iid` int(10) unsigned NOT NULL,
+  `iid` int(10) unsigned NOT NULL DEFAULT '0',
+  `retract_iid` int(10) unsigned NOT NULL DEFAULT '0',
   `signed_text` mediumtext NOT NULL,
   `signature` text NOT NULL,
   `signer` char(255) NOT NULL,
   PRIMARY KEY (`id`),
-  KEY `iid` (`iid`)
+  KEY `iid` (`iid`),
+  KEY `retract_iid` (`retract_iid`)
 ) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
 
 -- --------------------------------------------------------
index b542d75ba50462b8a86747638b056fe6ede8d8b5..35a6771b00e99f1aa64775c25eadccd05d4c608d 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define( 'UPDATE_VERSION' , 1147 );
+define( 'UPDATE_VERSION' , 1148 );
 
 /**
  *
@@ -1274,8 +1274,7 @@ function update_1146() {
        return UPDATE_SUCCESS ;
 }
 
-/*
-function update_xxxx() {
+function update_1147() {
        $r1 = q("ALTER TABLE `sign` ALTER `iid` SET DEFAULT '0'");
        $r2 = q("ALTER TABLE `sign` ADD `retract_iid` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `iid`");
        $r3 = q("ALTER TABLE `sign` ADD INDEX ( `retract_iid` )");  
@@ -1283,6 +1282,4 @@ function update_xxxx() {
                return UPDATE_FAILED ;
        return UPDATE_SUCCESS ;
 }
-*/
-// dump DB schema: mysqldump -d -h localhost -u root -pmypassword databasename > dumpfile.sql