add driver param to output queue so we know what protocol to use when faced with multiple choice

This commit is contained in:
friendica
2013-05-06 03:55:58 -07:00
parent dc028ce8ba
commit 027f932ff5
3 changed files with 12 additions and 2 deletions

View File

@@ -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;
}