mirror of
https://github.com/friendica/friendica
synced 2024-11-10 02:22:55 +00:00
Database update for worker
This commit is contained in:
parent
32e8f3468d
commit
ce9b4e868b
3 changed files with 16 additions and 3 deletions
2
boot.php
2
boot.php
|
@ -19,7 +19,7 @@ define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
||||||
define ( 'FRIENDICA_CODENAME', 'Lily of the valley');
|
define ( 'FRIENDICA_CODENAME', 'Lily of the valley');
|
||||||
define ( 'FRIENDICA_VERSION', '3.4.1' );
|
define ( 'FRIENDICA_VERSION', '3.4.1' );
|
||||||
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
|
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
|
||||||
define ( 'DB_UPDATE_VERSION', 1188 );
|
define ( 'DB_UPDATE_VERSION', 1189 );
|
||||||
define ( 'EOL', "<br />\r\n" );
|
define ( 'EOL', "<br />\r\n" );
|
||||||
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
|
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
|
||||||
|
|
||||||
|
|
15
database.sql
15
database.sql
|
@ -1,6 +1,6 @@
|
||||||
-- ------------------------------------------
|
-- ------------------------------------------
|
||||||
-- Friendica 3.4.1 (Lily of the valley)
|
-- 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`)
|
INDEX `username` (`username`)
|
||||||
) DEFAULT CHARSET=utf8;
|
) 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;
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
define( 'UPDATE_VERSION' , 1188 );
|
define( 'UPDATE_VERSION' , 1189 );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue