]> git.mxchange.org Git - friendica.git/commitdiff
Database update for worker
authorMichael Vogel <icarus@dabo.de>
Fri, 11 Sep 2015 19:56:37 +0000 (21:56 +0200)
committerMichael Vogel <icarus@dabo.de>
Fri, 11 Sep 2015 19:56:37 +0000 (21:56 +0200)
boot.php
database.sql
update.php

index b3b926521919662dda81da660f503be4bb309d36..3bbbef3c96520e2bb4685a21f9937c00019ecf37 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -19,7 +19,7 @@ define ( 'FRIENDICA_PLATFORM',     'Friendica');
 define ( 'FRIENDICA_CODENAME',     'Lily of the valley');
 define ( 'FRIENDICA_VERSION',      '3.4.1' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
-define ( 'DB_UPDATE_VERSION',      1188      );
+define ( 'DB_UPDATE_VERSION',      1189      );
 define ( 'EOL',                    "<br />\r\n"     );
 define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
 
index 76df6aec1990d576abdb7bf0b0b9796732296742..a6eb71ef3bdb922b5967d0f4350d9a26004ed5a2 100644 (file)
@@ -1,6 +1,6 @@
 -- ------------------------------------------
 -- Friendica 3.4.1 (Lily of the valley)
--- DB_UPDATE_VERSION 1188
+-- DB_UPDATE_VERSION 1189
 -- ------------------------------------------
 
 
@@ -1020,3 +1020,16 @@ CREATE TABLE IF NOT EXISTS `userd` (
         INDEX `username` (`username`)
 ) DEFAULT CHARSET=utf8;
 
+--
+-- TABLE workerqueue
+--
+CREATE TABLE IF NOT EXISTS `workerqueue` (
+       `id` int(11) NOT NULL auto_increment PRIMARY KEY,
+       `parameter` text NOT NULL,
+       `priority` tinyint(3) unsigned NOT NULL DEFAULT 0,
+       `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `pid` int(11) NOT NULL DEFAULT 0,
+       `executed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+        INDEX `created` (`created`)
+) DEFAULT CHARSET=utf8;
+
index 761da7273d5d94da645a528517a6eb7e0c62de75..06aab577a35609f5dccc38f5c6f845bac1e52fcf 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define( 'UPDATE_VERSION' , 1188 );
+define( 'UPDATE_VERSION' , 1189 );
 
 /**
  *