diff --git a/system/dbupdate_3.4.php b/system/dbupdate_3.4.php index 458f178d4..1b4b67b36 100644 --- a/system/dbupdate_3.4.php +++ b/system/dbupdate_3.4.php @@ -45,6 +45,7 @@ require_once('dbupdate_3.4/30537_anmerkung_in_tbl_rolleberechtigung.php'); require_once('dbupdate_3.4/30181_tabelle_anrechnung_neue_attribute_fuer_begruendung.php'); require_once('dbupdate_3.4/29529_infocenter_anpassungen.php'); require_once('dbupdate_3.4/29835_uhstat1_erfassung_der_uhstat1_daten_ueber_das_bewerbungstool.php'); +require_once('dbupdate_3.4/33003_bis_meldung_personal.php'); // *** Pruefung und hinzufuegen der neuen Attribute und Tabellen diff --git a/system/dbupdate_3.4/33003_bis_meldung_personal.php b/system/dbupdate_3.4/33003_bis_meldung_personal.php index f59d6770e..eb49217ea 100644 --- a/system/dbupdate_3.4/33003_bis_meldung_personal.php +++ b/system/dbupdate_3.4/33003_bis_meldung_personal.php @@ -5,8 +5,7 @@ if (! defined('DB_NAME')) exit('No direct script access allowed'); if(!@$db->db_query("SELECT habilitation FROM public.tbl_mitarbeiter LIMIT 1")) { $qry = "ALTER TABLE public.tbl_mitarbeiter ADD COLUMN habilitation boolean NOT NULL DEFAULT false; - COMMENT ON COLUMN public.tbl_mitarbeiter.habilitation IS 'Zeigt an, ob Mitarbeiter habilitiert ist (BIS relevant).'; - "; + COMMENT ON COLUMN public.tbl_mitarbeiter.habilitation IS 'Zeigt an, ob Mitarbeiter habilitiert ist (BIS relevant).';"; if(!$db->db_query($qry)) echo 'public.tbl_mitarbeiter '.$db->db_last_error().'
';