Move the issue due date migration to position 25 to 19 to avoid collision with the latest updates to the develop branch

This commit is contained in:
Simon Holywell 2012-03-22 11:36:26 +00:00
parent fa95cbd934
commit f7d75f1b94

View File

@ -25,7 +25,7 @@
* Add the private column for the project. * Add the private column for the project.
*/ */
function IDF_Migrations_19IssueDueDate_up($params=null) function IDF_Migrations_25IssueDueDate_up($params=null)
{ {
$table = Pluf::factory('IDF_Issue')->getSqlTable(); $table = Pluf::factory('IDF_Issue')->getSqlTable();
$sql = array(); $sql = array();
@ -39,7 +39,7 @@ function IDF_Migrations_19IssueDueDate_up($params=null)
$db->execute($sql[$engine]); $db->execute($sql[$engine]);
} }
function IDF_Migrations_19IssueDueDate_down($params=null) function IDF_Migrations_25IssueDueDate_down($params=null)
{ {
$table = Pluf::factory('IDF_Issue')->getSqlTable(); $table = Pluf::factory('IDF_Issue')->getSqlTable();
$sql = array(); $sql = array();
@ -52,4 +52,4 @@ function IDF_Migrations_19IssueDueDate_down($params=null)
} }
$db->execute($sql[$engine]); $db->execute($sql[$engine]);
} }