From 0374b0be6a3be6815a2c9af8257d4d7af4727dcc Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 18 May 2018 12:50:57 +0000 Subject: [PATCH] Changed database structure --- database.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/database.sql b/database.sql index 7169847ba..bc002cfed 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ -- Friendica 2018.05-rc (The Tazmans Flax-lily) --- DB_UPDATE_VERSION 1263 +-- DB_UPDATE_VERSION 1264 -- ------------------------------------------ @@ -858,6 +858,7 @@ CREATE TABLE IF NOT EXISTS `push_subscriber` ( `push` tinyint unsigned NOT NULL DEFAULT 0 COMMENT 'Retrial counter', `last_update` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last successful trial', `next_try` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Next retrial date', + `renewed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'Date of last subscription renewal', `secret` varchar(255) NOT NULL DEFAULT '' COMMENT '', PRIMARY KEY(`id`), INDEX `next_try` (`next_try`)