aboutsummaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-05-06 03:55:58 -0700
committerfriendica <info@friendica.com>2013-05-06 03:55:58 -0700
commit027f932ff53d0bd42ba8bb805660a332fc2910a9 (patch)
tree3f8db7f3fe76001e74f3930ff99879b9ac085fd6 /install
parentdc028ce8ba37aa80c05ade1f2d36371c41457671 (diff)
downloadvolse-hubzilla-027f932ff53d0bd42ba8bb805660a332fc2910a9.tar.gz
volse-hubzilla-027f932ff53d0bd42ba8bb805660a332fc2910a9.tar.bz2
volse-hubzilla-027f932ff53d0bd42ba8bb805660a332fc2910a9.zip
add driver param to output queue so we know what protocol to use when faced with multiple choice
Diffstat (limited to 'install')
-rw-r--r--install/database.sql1
-rw-r--r--install/update.php11
2 files changed, 11 insertions, 1 deletions
diff --git a/install/database.sql b/install/database.sql
index 720c79402..025bd3d39 100644
--- a/install/database.sql
+++ b/install/database.sql
@@ -597,6 +597,7 @@ CREATE TABLE IF NOT EXISTS `outq` (
`outq_hash` char(255) NOT NULL,
`outq_account` int(10) unsigned NOT NULL DEFAULT '0',
`outq_channel` int(10) unsigned NOT NULL DEFAULT '0',
+ `outq_driver` char(32) NOT NULL DEFAULT '',
`outq_posturl` char(255) NOT NULL DEFAULT '',
`outq_async` tinyint(1) NOT NULL DEFAULT '0',
`outq_delivered` tinyint(1) NOT NULL DEFAULT '0',
diff --git a/install/update.php b/install/update.php
index 7dbc601c8..8a225867e 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1041 );
+define( 'UPDATE_VERSION' , 1042 );
/**
*
@@ -522,3 +522,12 @@ function update_r1040() {
return UPDATE_SUCCESS;
return UPDATE_FAILED;
}
+
+function update_r1041() {
+ $r = q("ALTER TABLE `outq` ADD `outq_driver` CHAR( 32 ) NOT NULL DEFAULT '' AFTER `outq_channel` ");
+
+ if($r)
+ return UPDATE_SUCCESS;
+ return UPDATE_FAILED;
+}
+