Merge origin/ci into ci

This commit is contained in:
paolo
2016-07-29 15:37:15 +02:00
9 changed files with 1099 additions and 337 deletions
+8 -1
View File
@@ -21,6 +21,12 @@ class Migration_Reihungstest extends MigrationLib
"anmeldefrist" => array("type" => "date")
);
$this->addColumn("public", "tbl_reihungstest", $columns);
// Add arbeitsplaetze to public.tbl_ort
$columns = array(
"arbeitsplaetze" => array("type" => "integer", "null" => true)
);
$this->addColumn("public", "tbl_ort", $columns);
// Add rt_stufe and punkte to public.tbl_prestudentstatus
$columns = array(
@@ -129,7 +135,8 @@ class Migration_Reihungstest extends MigrationLib
"type" => "varchar(16)"
),
"uid" => array(
"type" => "varchar(32)"
"type" => "varchar(32)",
"null" => true
)
);
$this->createTable("public", "tbl_rt_ort", $fields);