This commit is contained in:
cgfhtw
2022-11-29 08:48:50 +01:00
parent 546e55ed96
commit 266ba7523f
21 changed files with 1863 additions and 0 deletions
+2
View File
@@ -350,6 +350,8 @@ $tabellen=array(
"wawi.tbl_aufteilung_default" => array("aufteilung_id","kostenstelle_id","oe_kurzbz","anteil","insertamum","insertvon","updateamum","updatevon"),
);
require_once('dbupdate_3.4/25999_cis4_cms.php');
$tabs=array_keys($tabellen);
//print_r($tabs);
$i=0;
+17
View File
@@ -0,0 +1,17 @@
<?php
if (! defined('DB_NAME')) exit('No direct script access allowed');
// Add index to system.tbl_log
if(!$result = @$db->db_query("SELECT xslt_xhtml_c4 FROM campus.tbl_template LIMIT 1"))
{
$qry = "ALTER TABLE campus.tbl_template ADD COLUMN xslt_xhtml_c4 xml;";
if(!$db->db_query($qry))
echo '<strong>campus.tbl_template: '.$db->db_last_error().'</strong><br>';
else
echo '<br>campus.tbl_template: Spalte xslt_xhtml_c4 hinzugefuegt';
// TODO(chris): add default values
}
$tabellen['campus.tbl_template'][] = 'xslt_xhtml_c4';