]> git.mxchange.org Git - friendica.git/commitdiff
Database can now be automatically updated
authorDomovoy <domovoy@errlock.org>
Mon, 23 Jul 2012 23:21:02 +0000 (01:21 +0200)
committerDomovoy <domovoy@errlock.org>
Mon, 23 Jul 2012 23:21:02 +0000 (01:21 +0200)
boot.php
database.sql
update.php

index 3a541a272eb032045f166ce6cbab56ca53f27353..bcff5dddd26343375aa222363058a233c21e3d68 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -12,7 +12,7 @@ require_once('include/cache.php');
 define ( 'FRIENDICA_PLATFORM',     'Friendica');
 define ( 'FRIENDICA_VERSION',      '3.0.1412' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
-define ( 'DB_UPDATE_VERSION',      1153      );
+define ( 'DB_UPDATE_VERSION',      1154      );
 
 define ( 'EOL',                    "<br />\r\n"     );
 define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
index 1d0a321760cbe9c3b77baf5d020d80b7ac81841a..80ce05ba0cc998f619df3b0149ba94f515e7637e 100644 (file)
@@ -456,6 +456,7 @@ CREATE TABLE IF NOT EXISTS `hook` (
   `hook` char(255) NOT NULL,
   `file` char(255) NOT NULL,
   `function` char(255) NOT NULL,
+  `priority` int(11) UNSIGNED NOT NULL DEFAULT '0',
   PRIMARY KEY (`id`)
 ) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
 
index d752eaa6df99750d4047107855eec248dceaea34..9442f825bb34fb3cefe53f8241f51115b9b0ea75 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define( 'UPDATE_VERSION' , 1153 );
+define( 'UPDATE_VERSION' , 1154 );
 
 /**
  *
@@ -1337,3 +1337,10 @@ function update_1152() {
        return UPDATE_SUCCESS;
 }
 
+function update_1153() {
+       $r = q("ALTER TABLE `hook` ADD `priority` INT(11) UNSIGNED NOT NULL DEFAULT '0'");
+       
+       if(!$r) return UPDATE_FAILED;
+       return UPDATE_SUCCESS;
+}
+