diff --git a/application/config/migration.php b/application/config/migration.php index 102054bae..e9a4e86f8 100755 --- a/application/config/migration.php +++ b/application/config/migration.php @@ -23,7 +23,7 @@ $config['migration_enabled'] = TRUE; | be upgraded / downgraded to. | */ -$config['migration_version'] = '009'; +$config['migration_version'] = '011'; /* |-------------------------------------------------------------------------- diff --git a/application/migrations/011_reihungstest.php b/application/migrations/011_reihungstest.php index fff10b988..068bb0604 100644 --- a/application/migrations/011_reihungstest.php +++ b/application/migrations/011_reihungstest.php @@ -37,7 +37,7 @@ class Migration_Reihungstest extends MigrationLib rt_id integer, anmeldedatum date, teilgenommen boolean DEFAULT FALSE, - ort_kurzbz varchar(16) NOT NULL, + ort_kurzbz varchar(16), punkte numeric(8,4) DEFAULT NULL, CONSTRAINT pk_tbl_rt_person PRIMARY KEY (person_id, rt_id), CONSTRAINT fk_rt_person_ort_kurzbz FOREIGN KEY (ort_kurzbz) REFERENCES public.tbl_ort(ort_kurzbz) ON UPDATE CASCADE ON DELETE RESTRICT,