From 736bcae3e879b867a74755a4a1d24cc72b113ff7 Mon Sep 17 00:00:00 2001
From: fabrixxm <fabrix.xm@gmail.com>
Date: Thu, 3 Jan 2019 22:51:36 +0100
Subject: [PATCH] update database.sql

---
 database.sql | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/database.sql b/database.sql
index a692b447f7..7d0db4fa69 100644
--- a/database.sql
+++ b/database.sql
@@ -1,6 +1,6 @@
 -- ------------------------------------------
 -- Friendica 2019.03-dev (The Tazmans Flax-lily)
--- DB_UPDATE_VERSION 1297
+-- DB_UPDATE_VERSION 1299
 -- ------------------------------------------
 
 
@@ -64,6 +64,8 @@ CREATE TABLE IF NOT EXISTS `attach` (
 	`allow_gid` mediumtext COMMENT 'Access Control - list of allowed groups',
 	`deny_cid` mediumtext COMMENT 'Access Control - list of denied contact.id',
 	`deny_gid` mediumtext COMMENT 'Access Control - list of denied groups',
+	`backend-class` tinytext COMMENT 'Storage backend class',
+	`backend-ref` text COMMENT 'Storage backend data reference',
 	 PRIMARY KEY(`id`)
 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='file attachments';
 
@@ -641,8 +643,8 @@ CREATE TABLE IF NOT EXISTS `item-delivery-data` (
 	`iid` int unsigned NOT NULL COMMENT 'Item id',
 	`postopts` text COMMENT 'External post connectors add their network name to this comma-separated string to identify that they should be delivered to these networks during delivery',
 	`inform` mediumtext COMMENT 'Additional receivers of the linked item',
-	`queue_count` mediumint(9) NOT NULL DEFAULT '0' COMMENT 'Initial number of delivery recipients, used as item.delivery_queue_count',
-	`queue_done` mediumint(9) NOT NULL DEFAULT '0' COMMENT 'Number of successful deliveries, used as item.delivery_queue_done',
+	`queue_count` mediumint NOT NULL DEFAULT 0 COMMENT 'Initial number of delivery recipients, used as item.delivery_queue_count',
+	`queue_done` mediumint NOT NULL DEFAULT 0 COMMENT 'Number of successful deliveries, used as item.delivery_queue_done',
 	 PRIMARY KEY(`iid`)
 ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='Delivery data for items';
 
-- 
2.39.5