diff --git a/tools/database_compare/connection_info.json b/tools/database_compare/connection_info.json new file mode 100644 index 00000000..f098e5ab --- /dev/null +++ b/tools/database_compare/connection_info.json @@ -0,0 +1,6 @@ +{ + "host": "localhost", + "database": "openxe", + "user": "openxe", + "passwd": "openxe" +} diff --git a/tools/database_compare/database_compare.php b/tools/database_compare/database_compare.php index 9883fcc2..3d726b86 100644 --- a/tools/database_compare/database_compare.php +++ b/tools/database_compare/database_compare.php @@ -206,13 +206,13 @@ if ($argc > 1) { echo("--------------- Comparing database '$schema@$host' vs. JSON '".$compare_def['database']."@".$compare_def['host']."' ---------------\n"); $compare_differences = compare_table_array($compare_def,"in JSON",$db_def,"in DB",true); - echo("Comparison found ".(empty($compare_differences)?0:count($compare_differences))." differences.\n"); + echo((empty($compare_differences)?0:count($compare_differences))." differences.\n"); if ($verbose) { foreach ($compare_differences as $compare_difference) { $comma = ""; foreach ($compare_difference as $key => $value) { - echo($comma."$key => '$value'"); + echo($comma."$key => [$value]"); $comma = ", "; } echo("\n"); @@ -265,7 +265,14 @@ if ($argc > 1) { if ($key['Key_name'] == 'PRIMARY') { $keystring = "PRIMARY KEY "; } else { - $keystring = $key['Index_type']." KEY `".$key['Key_name']."` "; + + if(array_key_exists('Index_type', $key)) { + $index_type = $key['Index_type']; + } else { + $index_type = ""; + } + + $keystring = $index_type." KEY `".$key['Key_name']."` "; } $sql .= $comma.$keystring."(`".implode("`,`",$key['columns'])."`) "; } @@ -292,7 +299,7 @@ if ($argc > 1) { if ($column_key !== false) { $column = $table['columns'][$column_key]; $sql = "ALTER TABLE `$table_name` ADD COLUMN `".$column_name."` "; - $sql .= column_sql_definition($table_name, $column); + $sql .= column_sql_definition($table_name, $column, array_column($replacers,1)); $sql .= ";"; $upgrade_sql[] = $sql; } @@ -334,11 +341,36 @@ if ($argc > 1) { } // Modify Column in DB break; - case 'Table count': - // Nothing to do - break; - case 'Table type': - echo("Upgrade type '".$compare_difference['type']."' on table '".$compare_difference['table']."' not supported.\n"); + case "Key definition": + $table_name = $compare_difference['table']; + $key_name = $compare_difference['key']; + $table_key = array_search($table_name,array_column($compare_def['tables'],'name')); + if ($table_key !== false) { + $table = $compare_def['tables'][$table_key]; + $keys = $table['keys']; + + $key_names = array_column($keys,'Key_name'); + $key_key = array_search($key_name,$key_names); + + if ($key_key !== false) { + $key = $table['keys'][$key_key]; + + $sql = "ALTER TABLE `$table_name` DROP KEY `".$key_name."`;"; + $upgrade_sql[] = $sql; + + $sql = "ALTER TABLE `$table_name` ADD KEY `".$key_name."` "; + $sql .= "(`".implode("`,`",$key['columns'])."`)"; + $sql .= ";"; + $upgrade_sql[] = $sql; + } + else { + echo("Error key_key while changing key '$key_name' in table '".$table['name']."'\n"); + exit; + } + } + else { + echo("Error table_key while changing key '$key_name' in table '$table_name'.\n"); + } break; case 'Key existance': @@ -361,16 +393,19 @@ if ($argc > 1) { $upgrade_sql[] = $sql; } else { - echo("Error key_key while modifying key '$key_name' in table '".$table['name']."'\n"); + echo("Error key_key while adding key '$key_name' in table '".$table['name']."'\n"); exit; } } else { echo("Error table_key while adding key '$key_name' in table '$table_name'.\n"); } - // Modify Column in DB - - + break; + case 'Table count': + // Nothing to do + break; + case 'Table type': + echo("Upgrade type '".$compare_difference['type']."' on table '".$compare_difference['table']."' not supported.\n"); break; default: echo("Upgrade type '".$compare_difference['type']."' not supported.\n"); @@ -409,7 +444,7 @@ if ($argc > 1) { foreach ($upgrade_sql as $sql) { $counter++; - echo("Upgrade step $counter of $number_of_statements... "); + echo("\rUpgrade step $counter of $number_of_statements... "); if ($verbose) { echo("(".substr($sql,0,100)."...) "); @@ -422,14 +457,22 @@ if ($argc > 1) { file_put_contents("./errors.txt",$error.$sql."\n",FILE_APPEND); $error_counter++; } else { - echo("ok.\n"); + echo("ok.\r"); } } - echo("\n"); + echo("--------------- Executing database upgrade for '$schema@$host' executed. ---------------\n"); echo("$error_counter errors.\n"); echo("--------------- Executing database upgrade for '$schema@$host' done. ---------------\n"); + + echo("--------------- Checking database upgrade for '$schema@$host'... ---------------\n"); + $db_def = load_tables_from_db($host, $schema, $user, $passwd, $replacers); + + echo("--------------- Comparing database '$schema@$host' vs. JSON '".$compare_def['database']."@".$compare_def['host']."' ---------------\n"); + $compare_differences = compare_table_array($compare_def,"in JSON",$db_def,"in DB",true); + echo((empty($compare_differences)?0:count($compare_differences))." differences.\n"); + } } @@ -483,7 +526,12 @@ function load_tables_from_db(string $host, string $schema, string $user, string $columns = array(); while ($column = mysqli_fetch_assoc($query_result)) { // Do some harmonization - sql_replace_reserved_functions($column,$replacers); + + if ($column['Default'] !== NULL) { + sql_replace_reserved_functions($column,$replacers); + $column['Default'] = mysql_put_text_type_in_quotes($column['Type'],$column['Default']); + } + $columns[] = $column; // Add column to list of columns } $table['columns'] = $columns; @@ -565,6 +613,10 @@ function load_tables_from_json(string $path, string $tables_file_name) : array { $db_def = json_decode($contents, true); + if (!$db_def) { + return(array()); + } + return($db_def); } @@ -626,7 +678,7 @@ function compare_table_array(array $nominal, string $nominal_name, array $actual foreach ($column as $key => $value) { if ($found_column[$key] != $value) { -// if ($key != 'permissions') { + if ($key != 'Key') { // Keys will be handled separately $compare_difference = array(); $compare_difference['type'] = "Column definition"; $compare_difference['table'] = $database_table['name']; @@ -635,7 +687,7 @@ function compare_table_array(array $nominal, string $nominal_name, array $actual $compare_difference[$nominal_name] = $value; $compare_difference[$actual_name] = $found_column[$key]; $compare_differences[] = $compare_difference; -// } + } } } unset($value); @@ -790,6 +842,17 @@ function sql_replace_reserved_functions(array &$column, array $replacers) { $column['Extra'] = $result; } +// Is it a text type? -> Use quotes then +function mysql_put_text_type_in_quotes(string $checktype, string $value) : string { + $types = array('char','varchar','tinytext','text','mediumtext','longtext'); + + foreach($types as $type) { + if (stripos($checktype, $type) !== false) { + return("'".$value."'"); + } + } + return($value); +} function info() { echo("OpenXE database compare\n"); diff --git a/tools/database_compare/db_schema.json b/tools/database_compare/db_schema.json index e9b990a9..fc849271 100644 --- a/tools/database_compare/db_schema.json +++ b/tools/database_compare/db_schema.json @@ -13,7 +13,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -24,7 +24,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35,7 +35,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43,10 +43,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54,10 +54,10 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68,7 +68,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79,7 +79,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87,10 +87,10 @@ { "Field": "steuerklasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98,10 +98,10 @@ { "Field": "rabatt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112,7 +112,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -123,7 +123,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -134,7 +134,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -145,7 +145,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -156,7 +156,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -167,7 +167,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -178,7 +178,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -189,7 +189,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -200,7 +200,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -211,7 +211,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -219,10 +219,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -230,10 +230,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -252,10 +252,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -263,7 +263,7 @@ { "Field": "dokument", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -274,7 +274,7 @@ { "Field": "preisart", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -288,7 +288,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -310,7 +310,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -329,7 +329,7 @@ { "Field": "waehrung", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -363,13 +363,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "shopid", - "Non_unique": "1", - "columns": "shopid" + "Key_name": "adresse", + "columns": [ + "adresse", + "artikel" + ] } ] }, @@ -383,7 +386,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -391,7 +394,7 @@ { "Field": "beschreibung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -402,10 +405,10 @@ { "Field": "beschreibung2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -424,7 +427,7 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -438,7 +441,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -513,8 +516,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -528,7 +532,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -558,10 +562,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -570,18 +574,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "rechnung", - "Non_unique": "1", - "columns": "rechnung" + "columns": [ + "rechnung" + ] }, { "Key_name": "auftrag", - "Non_unique": "1", - "columns": "auftrag" + "columns": [ + "auftrag" + ] } ] }, @@ -595,7 +602,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -603,10 +610,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -614,10 +621,10 @@ { "Field": "target", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -628,7 +635,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -637,8 +644,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -652,7 +660,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -660,7 +668,7 @@ { "Field": "bezeichnung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -671,7 +679,7 @@ { "Field": "verwendenals", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -682,7 +690,7 @@ { "Field": "baudrate", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -693,7 +701,7 @@ { "Field": "model", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -704,7 +712,7 @@ { "Field": "seriennummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -715,7 +723,7 @@ { "Field": "ipadresse", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -726,7 +734,7 @@ { "Field": "netmask", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -737,7 +745,7 @@ { "Field": "gateway", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -748,7 +756,7 @@ { "Field": "dns", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -781,7 +789,7 @@ { "Field": "ssid", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -792,7 +800,7 @@ { "Field": "passphrase", "Type": "varchar(256)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -806,7 +814,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -814,7 +822,7 @@ { "Field": "tmpip", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -826,8 +834,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -841,7 +850,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -849,7 +858,7 @@ { "Field": "ip", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -860,7 +869,7 @@ { "Field": "meldung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -871,7 +880,7 @@ { "Field": "seriennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -882,7 +891,7 @@ { "Field": "device", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -896,7 +905,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -905,8 +914,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -920,7 +930,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -928,7 +938,7 @@ { "Field": "auth", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -939,7 +949,7 @@ { "Field": "validpass", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -950,7 +960,7 @@ { "Field": "device", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -961,7 +971,7 @@ { "Field": "digets", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -972,7 +982,7 @@ { "Field": "ip", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -1006,8 +1016,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -1021,7 +1032,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -1029,10 +1040,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1040,10 +1051,10 @@ { "Field": "marketingsperre", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1054,7 +1065,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1065,7 +1076,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1073,10 +1084,10 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1084,10 +1095,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1095,10 +1106,10 @@ { "Field": "abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1106,10 +1117,10 @@ { "Field": "unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1117,10 +1128,10 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1128,10 +1139,10 @@ { "Field": "land", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1139,10 +1150,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1150,10 +1161,10 @@ { "Field": "ort", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1161,10 +1172,10 @@ { "Field": "plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1172,10 +1183,10 @@ { "Field": "telefon", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1183,10 +1194,10 @@ { "Field": "telefax", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1194,10 +1205,10 @@ { "Field": "mobil", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1205,10 +1216,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1216,10 +1227,10 @@ { "Field": "ustid", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1230,7 +1241,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1241,7 +1252,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1249,10 +1260,10 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1260,10 +1271,10 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1274,7 +1285,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1282,10 +1293,10 @@ { "Field": "steuer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1304,10 +1315,10 @@ { "Field": "kundennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1315,10 +1326,10 @@ { "Field": "lieferantennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1326,10 +1337,10 @@ { "Field": "mitarbeiternummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1337,10 +1348,10 @@ { "Field": "konto", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1348,10 +1359,10 @@ { "Field": "blz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1359,10 +1370,10 @@ { "Field": "bank", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1370,10 +1381,10 @@ { "Field": "inhaber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1381,10 +1392,10 @@ { "Field": "swift", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1392,10 +1403,10 @@ { "Field": "iban", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1403,10 +1414,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1414,10 +1425,10 @@ { "Field": "paypal", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1425,10 +1436,10 @@ { "Field": "paypalinhaber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1436,10 +1447,10 @@ { "Field": "paypalwaehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1450,7 +1461,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1461,7 +1472,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1469,10 +1480,10 @@ { "Field": "zahlungsweise", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1480,10 +1491,10 @@ { "Field": "zahlungszieltage", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1491,10 +1502,10 @@ { "Field": "zahlungszieltageskonto", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1502,10 +1513,10 @@ { "Field": "zahlungszielskonto", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1513,10 +1524,10 @@ { "Field": "versandart", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1524,10 +1535,10 @@ { "Field": "kundennummerlieferant", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1535,10 +1546,10 @@ { "Field": "zahlungsweiselieferant", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1546,10 +1557,10 @@ { "Field": "zahlungszieltagelieferant", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1557,10 +1568,10 @@ { "Field": "zahlungszieltageskontolieferant", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1568,10 +1579,10 @@ { "Field": "zahlungszielskontolieferant", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1579,10 +1590,10 @@ { "Field": "versandartlieferant", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1593,7 +1604,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1604,7 +1615,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1612,10 +1623,10 @@ { "Field": "webid", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1623,10 +1634,10 @@ { "Field": "vorname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1634,10 +1645,10 @@ { "Field": "kennung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1645,7 +1656,7 @@ { "Field": "sachkonto", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -1656,10 +1667,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1667,10 +1678,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1678,10 +1689,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1689,10 +1700,10 @@ { "Field": "filiale", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1703,7 +1714,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1714,7 +1725,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1722,10 +1733,10 @@ { "Field": "verbandsnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1733,10 +1744,10 @@ { "Field": "abweichendeemailab", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1747,7 +1758,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1766,10 +1777,10 @@ { "Field": "infoauftragserfassung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1777,7 +1788,7 @@ { "Field": "mandatsreferenz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -1791,7 +1802,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1810,7 +1821,7 @@ { "Field": "glaeubigeridentnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -1846,7 +1857,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1857,7 +1868,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1868,7 +1879,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1879,7 +1890,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1890,7 +1901,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1901,7 +1912,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1953,10 +1964,10 @@ { "Field": "rechnung_vorname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1964,10 +1975,10 @@ { "Field": "rechnung_name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1975,10 +1986,10 @@ { "Field": "rechnung_titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1986,10 +1997,10 @@ { "Field": "rechnung_typ", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1997,10 +2008,10 @@ { "Field": "rechnung_strasse", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2008,10 +2019,10 @@ { "Field": "rechnung_ort", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2019,10 +2030,10 @@ { "Field": "rechnung_plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2030,10 +2041,10 @@ { "Field": "rechnung_ansprechpartner", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2041,10 +2052,10 @@ { "Field": "rechnung_land", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2052,10 +2063,10 @@ { "Field": "rechnung_abteilung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2063,10 +2074,10 @@ { "Field": "rechnung_unterabteilung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2074,10 +2085,10 @@ { "Field": "rechnung_adresszusatz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2085,10 +2096,10 @@ { "Field": "rechnung_telefon", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2096,10 +2107,10 @@ { "Field": "rechnung_telefax", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2107,10 +2118,10 @@ { "Field": "rechnung_anschreiben", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2118,10 +2129,10 @@ { "Field": "rechnung_email", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2132,7 +2143,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2143,7 +2154,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2154,7 +2165,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2162,10 +2173,10 @@ { "Field": "liefersperregrund", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2173,10 +2184,10 @@ { "Field": "mlmpositionierung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2184,10 +2195,10 @@ { "Field": "steuernummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2198,7 +2209,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2209,7 +2220,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2217,10 +2228,10 @@ { "Field": "mlmabrechnung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2228,10 +2239,10 @@ { "Field": "mlmwaehrungauszahlung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2253,7 +2264,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2264,7 +2275,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2272,10 +2283,10 @@ { "Field": "logfile", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2286,7 +2297,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2308,7 +2319,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2330,7 +2341,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2341,7 +2352,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2349,10 +2360,10 @@ { "Field": "rabattinformation", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2363,7 +2374,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2374,7 +2385,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2385,7 +2396,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2396,7 +2407,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2407,7 +2418,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2415,10 +2426,10 @@ { "Field": "internetseite", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2429,7 +2440,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2440,7 +2451,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2451,7 +2462,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2462,7 +2473,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2473,7 +2484,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2484,7 +2495,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2495,7 +2506,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2506,7 +2517,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2517,7 +2528,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2528,7 +2539,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2539,7 +2550,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2550,7 +2561,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2561,7 +2572,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2572,7 +2583,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2583,7 +2594,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2594,7 +2605,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2605,7 +2616,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2616,7 +2627,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2627,7 +2638,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2638,7 +2649,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2649,7 +2660,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2660,7 +2671,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2671,7 +2682,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2679,10 +2690,10 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2690,10 +2701,10 @@ { "Field": "anschreiben", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2701,7 +2712,7 @@ { "Field": "nachname", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -2734,10 +2745,10 @@ { "Field": "lieferantennummerbeikunde", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2748,7 +2759,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2759,7 +2770,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2770,7 +2781,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2789,10 +2800,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2800,10 +2811,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2811,10 +2822,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2822,10 +2833,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2833,10 +2844,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2844,10 +2855,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2855,10 +2866,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2877,7 +2888,7 @@ { "Field": "angebot_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -2888,7 +2899,7 @@ { "Field": "auftrag_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -2899,7 +2910,7 @@ { "Field": "rechnung_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -2910,7 +2921,7 @@ { "Field": "gutschrift_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -2921,7 +2932,7 @@ { "Field": "lieferschein_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -2932,7 +2943,7 @@ { "Field": "bestellung_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -2943,7 +2954,7 @@ { "Field": "angebot_fax_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -2954,7 +2965,7 @@ { "Field": "auftrag_fax_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -2965,7 +2976,7 @@ { "Field": "rechnung_fax_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -2976,7 +2987,7 @@ { "Field": "gutschrift_fax_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -2987,7 +2998,7 @@ { "Field": "lieferschein_fax_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -2998,7 +3009,7 @@ { "Field": "bestellung_fax_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3020,7 +3031,7 @@ { "Field": "abpermail", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3042,7 +3053,7 @@ { "Field": "kassierernummer", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3086,7 +3097,7 @@ { "Field": "mandatsreferenzart", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3097,7 +3108,7 @@ { "Field": "mandatsreferenzwdhart", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3119,7 +3130,7 @@ { "Field": "kundennummer_buchhaltung", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3130,7 +3141,7 @@ { "Field": "lieferantennummer_buchhaltung", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3152,7 +3163,7 @@ { "Field": "zahlungsweiseabo", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3163,7 +3174,7 @@ { "Field": "bundesland", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3174,10 +3185,10 @@ { "Field": "mandatsreferenzhinweis", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3210,7 +3221,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3218,7 +3229,7 @@ { "Field": "umsatzsteuer_lieferant", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3232,7 +3243,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3243,7 +3254,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3251,7 +3262,7 @@ { "Field": "art", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3273,10 +3284,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3284,10 +3295,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3295,10 +3306,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3306,10 +3317,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3317,10 +3328,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3328,10 +3339,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3339,10 +3350,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3350,10 +3361,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3361,10 +3372,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3372,10 +3383,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3383,7 +3394,7 @@ { "Field": "angebot_email", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3394,7 +3405,7 @@ { "Field": "auftrag_email", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3405,7 +3416,7 @@ { "Field": "rechnungs_email", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3416,7 +3427,7 @@ { "Field": "gutschrift_email", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3427,7 +3438,7 @@ { "Field": "lieferschein_email", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3438,7 +3449,7 @@ { "Field": "bestellung_email", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3460,10 +3471,10 @@ { "Field": "hinweistextlieferant", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3482,10 +3493,10 @@ { "Field": "hinweis_einfuegen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3504,7 +3515,7 @@ { "Field": "gln", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3515,7 +3526,7 @@ { "Field": "rechnung_gln", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3537,10 +3548,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3570,10 +3581,10 @@ { "Field": "zollinformationen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3581,7 +3592,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3592,7 +3603,7 @@ { "Field": "rechnung_bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3604,43 +3615,51 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "name", - "Non_unique": "1", - "columns": "name" + "columns": [ + "name" + ] }, { "Key_name": "projekt", - "Non_unique": "1", - "columns": "projekt" + "columns": [ + "projekt" + ] }, { "Key_name": "kundennummer", - "Non_unique": "1", - "columns": "kundennummer" + "columns": [ + "kundennummer" + ] }, { "Key_name": "lieferantennummer", - "Non_unique": "1", - "columns": "lieferantennummer" + "columns": [ + "lieferantennummer" + ] }, { "Key_name": "usereditid", - "Non_unique": "1", - "columns": "usereditid" + "columns": [ + "usereditid" + ] }, { "Key_name": "plz", - "Non_unique": "1", - "columns": "plz" + "columns": [ + "plz" + ] }, { "Key_name": "email", - "Non_unique": "1", - "columns": "email" + "columns": [ + "email" + ] } ] }, @@ -3654,7 +3673,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -3662,10 +3681,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3718,13 +3737,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -3738,7 +3759,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -3760,7 +3781,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3768,10 +3789,10 @@ { "Field": "bezeichnung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3779,10 +3800,10 @@ { "Field": "art", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3790,10 +3811,10 @@ { "Field": "url", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3801,10 +3822,10 @@ { "Field": "benutzername", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3812,10 +3833,10 @@ { "Field": "passwort", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3837,7 +3858,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3848,7 +3869,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3857,13 +3878,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -3877,7 +3900,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -3885,7 +3908,7 @@ { "Field": "bezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -3930,8 +3953,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -3945,7 +3969,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4009,13 +4033,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "filter", - "Non_unique": "1", - "columns": "filter" + "columns": [ + "filter" + ] } ] }, @@ -4029,7 +4055,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4059,7 +4085,7 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4070,7 +4096,7 @@ { "Field": "typ2", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4103,7 +4129,7 @@ { "Field": "parameter1", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4114,7 +4140,7 @@ { "Field": "parameter2", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4125,7 +4151,7 @@ { "Field": "parameter3", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4148,18 +4174,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "filter", - "Non_unique": "1", - "columns": "filter" + "columns": [ + "filter" + ] }, { "Key_name": "gruppe", - "Non_unique": "1", - "columns": "gruppe" + "columns": [ + "gruppe" + ] } ] }, @@ -4173,7 +4202,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4181,7 +4210,7 @@ { "Field": "typ", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4192,7 +4221,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4203,7 +4232,7 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4214,7 +4243,7 @@ { "Field": "abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4225,7 +4254,7 @@ { "Field": "unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4236,7 +4265,7 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4247,7 +4276,7 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4258,10 +4287,10 @@ { "Field": "plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4269,7 +4298,7 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4280,10 +4309,10 @@ { "Field": "land", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4291,10 +4320,10 @@ { "Field": "telefon", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4302,10 +4331,10 @@ { "Field": "telefax", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4313,10 +4342,10 @@ { "Field": "email", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4324,10 +4353,10 @@ { "Field": "mobil", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4335,7 +4364,7 @@ { "Field": "internetseite", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4346,10 +4375,10 @@ { "Field": "ustid", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4382,7 +4411,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4402,8 +4431,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -4417,7 +4447,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4428,7 +4458,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4436,10 +4466,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4447,10 +4477,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4458,10 +4488,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4472,7 +4502,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4492,13 +4522,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -4512,7 +4544,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4523,7 +4555,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4531,10 +4563,10 @@ { "Field": "bezeichnung", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4542,10 +4574,10 @@ { "Field": "kontakt", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4554,13 +4586,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -4574,7 +4608,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4585,7 +4619,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4596,7 +4630,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4604,10 +4638,10 @@ { "Field": "subjekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4615,10 +4649,10 @@ { "Field": "praedikat", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4626,10 +4660,10 @@ { "Field": "objekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4637,10 +4671,10 @@ { "Field": "parameter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4651,7 +4685,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4662,7 +4696,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4671,18 +4705,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] }, { "Key_name": "projekt", - "Non_unique": "1", - "columns": "projekt" + "columns": [ + "projekt" + ] } ] }, @@ -4696,7 +4733,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4704,7 +4741,7 @@ { "Field": "type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4715,7 +4752,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4771,8 +4808,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -4786,7 +4824,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4816,10 +4854,10 @@ { "Field": "verwenden_als", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4828,8 +4866,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -4843,7 +4882,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4851,7 +4890,7 @@ { "Field": "code", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4862,7 +4901,7 @@ { "Field": "beschriftung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4884,10 +4923,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4896,8 +4935,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -4911,7 +4951,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4919,7 +4959,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "UNI", "Default": "", @@ -4930,7 +4970,7 @@ { "Field": "value", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4942,13 +4982,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "name", - "Non_unique": "0", - "columns": "name" + "columns": [ + "name" + ] } ] }, @@ -4962,7 +5004,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4970,7 +5012,7 @@ { "Field": "filename", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -4981,7 +5023,7 @@ { "Field": "type", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -4992,7 +5034,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5015,13 +5057,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "filename", - "Non_unique": "1", - "columns": "filename" + "columns": [ + "filename" + ] } ] }, @@ -5035,7 +5079,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -5065,7 +5109,7 @@ { "Field": "seller_sku", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -5076,7 +5120,7 @@ { "Field": "asin", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5110,18 +5154,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "article_id", - "Non_unique": "1", - "columns": "article_id" + "columns": [ + "article_id" + ] }, { "Key_name": "seller_sku", - "Non_unique": "1", - "columns": "seller_sku" + "columns": [ + "seller_sku" + ] } ] }, @@ -5135,7 +5182,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -5199,13 +5246,17 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "Key_name": "shopid", + "columns": [ + "shopid", + "auftrag", + "status" + ] } ] }, @@ -5219,7 +5270,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -5238,7 +5289,7 @@ { "Field": "reportid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -5249,7 +5300,7 @@ { "Field": "requestreportid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "MUL", "Default": "", @@ -5260,7 +5311,7 @@ { "Field": "reporttype", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "MUL", "Default": "", @@ -5271,7 +5322,7 @@ { "Field": "marketplaces", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -5282,7 +5333,7 @@ { "Field": "requesttype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -5293,10 +5344,10 @@ { "Field": "report_processing_status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": "_DONE_", + "Default": "'_done_'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5329,7 +5380,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5340,7 +5391,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5373,7 +5424,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5381,7 +5432,7 @@ { "Field": "report_options", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -5393,28 +5444,34 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "0", - "columns": "shop_id" + "columns": [ + "shop_id", + "reportid" + ] }, { "Key_name": "reporttype", - "Non_unique": "1", - "columns": "reporttype" + "columns": [ + "reporttype" + ] }, { "Key_name": "requestreportid", - "Non_unique": "1", - "columns": "requestreportid" + "columns": [ + "requestreportid" + ] }, { "Key_name": "created_at", - "Non_unique": "1", - "columns": "created_at" + "columns": [ + "created_at" + ] } ] }, @@ -5428,7 +5485,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -5447,7 +5504,7 @@ { "Field": "report_type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5458,7 +5515,7 @@ { "Field": "schedule", "Type": "varchar(12)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5483,7 +5540,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5503,13 +5560,19 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "shopid", - "Non_unique": "1", - "columns": "shopid" + "Key_name": "shop_id", + "columns": [ + "shop_id", + "report_type", + "schedule", + "scheduled_date", + "deleted" + ] } ] }, @@ -5523,7 +5586,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -5542,7 +5605,7 @@ { "Field": "orderid", "Type": "varchar(19)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -5553,7 +5616,7 @@ { "Field": "orderitemid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5564,7 +5627,7 @@ { "Field": "merchantorderid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5575,7 +5638,7 @@ { "Field": "merchantorderitemid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5586,7 +5649,7 @@ { "Field": "shipmentitemid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5597,7 +5660,7 @@ { "Field": "sku", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5608,7 +5671,7 @@ { "Field": "carrier", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5619,7 +5682,7 @@ { "Field": "currency", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5630,7 +5693,7 @@ { "Field": "tracking_number", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5641,7 +5704,7 @@ { "Field": "sales_channel", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5652,7 +5715,7 @@ { "Field": "fulfillment_channel", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5663,7 +5726,7 @@ { "Field": "fulfillment_center_id", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5688,7 +5751,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5699,7 +5762,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5707,7 +5770,7 @@ { "Field": "ship_address_1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5718,7 +5781,7 @@ { "Field": "ship_address_2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5729,7 +5792,7 @@ { "Field": "ship_address_3", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5740,7 +5803,7 @@ { "Field": "ship_city", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5751,7 +5814,7 @@ { "Field": "ship_state", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5762,7 +5825,7 @@ { "Field": "ship_postal_code", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5773,7 +5836,7 @@ { "Field": "ship_country", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5784,7 +5847,7 @@ { "Field": "ship_phone_number", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5795,7 +5858,7 @@ { "Field": "bill_address_1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5806,7 +5869,7 @@ { "Field": "bill_address_2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5817,7 +5880,7 @@ { "Field": "bill_address_3", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5828,7 +5891,7 @@ { "Field": "bill_city", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5839,7 +5902,7 @@ { "Field": "bill_state", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5850,7 +5913,7 @@ { "Field": "bill_postal_code", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5861,7 +5924,7 @@ { "Field": "bill_country", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5872,7 +5935,7 @@ { "Field": "recipient_name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5883,7 +5946,7 @@ { "Field": "buyer_name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -5897,7 +5960,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5908,7 +5971,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5919,7 +5982,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5930,7 +5993,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5941,7 +6004,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5952,7 +6015,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5963,7 +6026,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5974,7 +6037,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5983,18 +6046,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id" + ] }, { "Key_name": "orderid", - "Non_unique": "1", - "columns": "orderid" + "columns": [ + "orderid" + ] } ] }, @@ -6008,7 +6074,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -6027,7 +6093,7 @@ { "Field": "orderid", "Type": "varchar(19)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -6038,7 +6104,7 @@ { "Field": "sku", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -6049,7 +6115,7 @@ { "Field": "transaction_type", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -6060,10 +6126,10 @@ { "Field": "fullrow", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6071,7 +6137,7 @@ { "Field": "hash_sha1", "Type": "varchar(40)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -6192,7 +6258,7 @@ { "Field": "invoicenumber", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -6206,7 +6272,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6217,7 +6283,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6228,7 +6294,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6237,28 +6303,33 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "orderid", - "Non_unique": "1", - "columns": "orderid" + "columns": [ + "orderid" + ] }, { "Key_name": "hash_sha1", - "Non_unique": "1", - "columns": "hash_sha1" + "columns": [ + "hash_sha1" + ] }, { "Key_name": "transaction_type", - "Non_unique": "1", - "columns": "transaction_type" + "columns": [ + "transaction_type" + ] }, { "Key_name": "position_id", - "Non_unique": "1", - "columns": "position_id" + "columns": [ + "position_id" + ] } ] }, @@ -6272,7 +6343,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -6291,7 +6362,7 @@ { "Field": "orderid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -6302,7 +6373,7 @@ { "Field": "vat_invoice_number", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -6324,7 +6395,7 @@ { "Field": "from_city", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -6335,7 +6406,7 @@ { "Field": "from_state", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -6346,7 +6417,7 @@ { "Field": "from_country", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -6357,7 +6428,7 @@ { "Field": "from_postal_code", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -6368,7 +6439,7 @@ { "Field": "from_location_code", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -6379,7 +6450,7 @@ { "Field": "seller_tax_registration", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -6390,7 +6461,7 @@ { "Field": "buyer_tax_registration", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -6404,7 +6475,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6424,13 +6495,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "Key_name": "shopid", + "columns": [ + "shopid", + "orderid" + ] } ] }, @@ -6444,7 +6518,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -6452,7 +6526,7 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6485,7 +6559,7 @@ { "Field": "inv_rech_nr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6496,7 +6570,7 @@ { "Field": "inv_date", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6507,7 +6581,7 @@ { "Field": "amazonorderid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6518,7 +6592,7 @@ { "Field": "shipmentdate", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6529,7 +6603,7 @@ { "Field": "buyeremail", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6540,7 +6614,7 @@ { "Field": "buyerphonenumber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6551,7 +6625,7 @@ { "Field": "buyername", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6562,7 +6636,7 @@ { "Field": "sku", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6573,7 +6647,7 @@ { "Field": "productname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6584,7 +6658,7 @@ { "Field": "quantitypurchased", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6595,7 +6669,7 @@ { "Field": "quantityshipped", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6606,7 +6680,7 @@ { "Field": "currency", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6617,7 +6691,7 @@ { "Field": "mwst", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6628,7 +6702,7 @@ { "Field": "taxrate", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6639,7 +6713,7 @@ { "Field": "brutto_total", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6650,7 +6724,7 @@ { "Field": "netto_total", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6661,7 +6735,7 @@ { "Field": "tax_total", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6672,7 +6746,7 @@ { "Field": "itemprice", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6683,7 +6757,7 @@ { "Field": "itemprice_netto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6694,7 +6768,7 @@ { "Field": "itemprice_tax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6705,7 +6779,7 @@ { "Field": "shippingprice", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6716,7 +6790,7 @@ { "Field": "shippingprice_netto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6727,7 +6801,7 @@ { "Field": "shippingprice_tax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6738,7 +6812,7 @@ { "Field": "giftwrapprice", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6749,7 +6823,7 @@ { "Field": "giftwrapprice_netto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6760,7 +6834,7 @@ { "Field": "giftwrapprice_tax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6771,7 +6845,7 @@ { "Field": "itempromotiondiscount", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6782,7 +6856,7 @@ { "Field": "itempromotiondiscount_netto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6793,7 +6867,7 @@ { "Field": "itempromotiondiscount_tax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6804,7 +6878,7 @@ { "Field": "shippromotiondiscount", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6815,7 +6889,7 @@ { "Field": "shippromotiondiscount_netto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6826,7 +6900,7 @@ { "Field": "shippromotiondiscount_tax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6837,7 +6911,7 @@ { "Field": "giftwrappromotiondiscount", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6848,7 +6922,7 @@ { "Field": "giftwrappromotiondiscount_netto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6859,7 +6933,7 @@ { "Field": "giftwrappromotiondiscount_tax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6870,7 +6944,7 @@ { "Field": "shipservicelevel", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6881,7 +6955,7 @@ { "Field": "recipientname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6892,7 +6966,7 @@ { "Field": "shipaddress1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6903,7 +6977,7 @@ { "Field": "shipaddress2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6914,7 +6988,7 @@ { "Field": "shipaddress3", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6925,7 +6999,7 @@ { "Field": "shipcity", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6936,7 +7010,7 @@ { "Field": "shipstate", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6947,7 +7021,7 @@ { "Field": "shippostalcode", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6958,7 +7032,7 @@ { "Field": "shipcountry", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6969,7 +7043,7 @@ { "Field": "shipphonenumber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6980,7 +7054,7 @@ { "Field": "billaddress1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -6991,7 +7065,7 @@ { "Field": "billaddress2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7002,7 +7076,7 @@ { "Field": "billaddress3", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7013,7 +7087,7 @@ { "Field": "billcity", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7024,7 +7098,7 @@ { "Field": "billstate", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7035,7 +7109,7 @@ { "Field": "billpostalcode", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7046,7 +7120,7 @@ { "Field": "billcountry", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7057,7 +7131,7 @@ { "Field": "carrier", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7068,7 +7142,7 @@ { "Field": "trackingnumber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7079,7 +7153,7 @@ { "Field": "fulfillmentcenterid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7090,7 +7164,7 @@ { "Field": "fulfillmentchannel", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7101,7 +7175,7 @@ { "Field": "saleschannel", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7112,7 +7186,7 @@ { "Field": "asin", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7123,7 +7197,7 @@ { "Field": "conditiontype", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7134,7 +7208,7 @@ { "Field": "quantityavailable", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7145,7 +7219,7 @@ { "Field": "isbusinessorder", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7156,7 +7230,7 @@ { "Field": "uid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7167,7 +7241,7 @@ { "Field": "vatcheck", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7178,7 +7252,7 @@ { "Field": "documentlink", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7200,7 +7274,7 @@ { "Field": "rem_gs_nr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7211,7 +7285,7 @@ { "Field": "orderid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7222,7 +7296,7 @@ { "Field": "rem_date", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7233,7 +7307,7 @@ { "Field": "returndate", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7244,7 +7318,7 @@ { "Field": "buyercompanyname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7255,7 +7329,7 @@ { "Field": "quantity", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7266,7 +7340,7 @@ { "Field": "remreturnshipcost", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7277,7 +7351,7 @@ { "Field": "remsondererstattung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7288,7 +7362,7 @@ { "Field": "itempromotionid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7299,7 +7373,7 @@ { "Field": "reason", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7310,7 +7384,7 @@ { "Field": "rem_gs_nr_real", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -7344,8 +7418,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -7359,7 +7434,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -7370,7 +7445,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7378,10 +7453,10 @@ { "Field": "projekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7389,10 +7464,10 @@ { "Field": "belegnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7400,10 +7475,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7411,10 +7486,10 @@ { "Field": "auftrag", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7425,7 +7500,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7433,10 +7508,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7444,10 +7519,10 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7458,7 +7533,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7469,7 +7544,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7477,10 +7552,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7488,10 +7563,10 @@ { "Field": "abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7499,10 +7574,10 @@ { "Field": "unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7510,10 +7585,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7521,10 +7596,10 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7532,10 +7607,10 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7543,10 +7618,10 @@ { "Field": "plz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7554,10 +7629,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7565,10 +7640,10 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7576,10 +7651,10 @@ { "Field": "ustid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7587,10 +7662,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7598,10 +7673,10 @@ { "Field": "telefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7609,10 +7684,10 @@ { "Field": "telefax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7620,10 +7695,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7631,10 +7706,10 @@ { "Field": "kundennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7642,10 +7717,10 @@ { "Field": "versandart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7653,10 +7728,10 @@ { "Field": "versand", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7667,7 +7742,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7678,7 +7753,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7689,7 +7764,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7697,10 +7772,10 @@ { "Field": "versendet_per", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7708,10 +7783,10 @@ { "Field": "versendet_durch", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7722,7 +7797,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7744,7 +7819,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7763,7 +7838,7 @@ { "Field": "internebezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -7777,7 +7852,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7788,7 +7863,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7796,7 +7871,7 @@ { "Field": "aktion", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -7807,7 +7882,7 @@ { "Field": "vertrieb", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -7818,10 +7893,10 @@ { "Field": "anschreiben", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7843,7 +7918,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7865,7 +7940,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7876,7 +7951,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7887,7 +7962,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7898,7 +7973,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7909,7 +7984,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7920,7 +7995,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7931,7 +8006,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7994,10 +8069,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "EUR", + "Default": "'eur'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8005,10 +8080,10 @@ { "Field": "typ", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8027,10 +8102,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8038,7 +8113,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -8049,10 +8124,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8060,10 +8135,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8071,7 +8146,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -8082,7 +8157,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -8094,8 +8169,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -8109,7 +8185,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -8120,7 +8196,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8131,7 +8207,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8142,7 +8218,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8150,10 +8226,10 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8161,10 +8237,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8172,10 +8248,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8183,10 +8259,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8197,7 +8273,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8208,7 +8284,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8216,10 +8292,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8230,7 +8306,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8252,7 +8328,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8260,10 +8336,10 @@ { "Field": "steuertext", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8274,7 +8350,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8282,10 +8358,10 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8307,7 +8383,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8318,7 +8394,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8329,7 +8405,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8340,7 +8416,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8351,7 +8427,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8362,7 +8438,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8370,10 +8446,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8381,10 +8457,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8392,10 +8468,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8403,10 +8479,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8414,10 +8490,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8425,10 +8501,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8436,10 +8512,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8447,10 +8523,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8458,10 +8534,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8469,10 +8545,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8480,10 +8556,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8491,10 +8567,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8502,10 +8578,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8513,10 +8589,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8524,10 +8600,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8535,10 +8611,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8546,10 +8622,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8557,10 +8633,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8568,10 +8644,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8579,10 +8655,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8590,10 +8666,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8601,10 +8677,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8612,10 +8688,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8623,10 +8699,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8634,10 +8710,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8645,10 +8721,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8656,10 +8732,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8667,10 +8743,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8678,10 +8754,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8689,10 +8765,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8700,10 +8776,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8711,10 +8787,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8722,10 +8798,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8733,10 +8809,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8744,10 +8820,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8755,10 +8831,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8766,10 +8842,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8777,10 +8853,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8788,10 +8864,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8799,10 +8875,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8813,7 +8889,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8821,7 +8897,7 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -8832,7 +8908,7 @@ { "Field": "einheit", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -8846,7 +8922,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8866,13 +8942,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "anfrage", - "Non_unique": "1", - "columns": "anfrage" + "columns": [ + "anfrage" + ] } ] }, @@ -8886,7 +8964,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -8897,7 +8975,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8908,7 +8986,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8916,10 +8994,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8927,10 +9005,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8939,13 +9017,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "anfrage", - "Non_unique": "1", - "columns": "anfrage" + "columns": [ + "anfrage" + ] } ] }, @@ -8959,7 +9039,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -8970,7 +9050,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8981,7 +9061,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8989,10 +9069,10 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9000,10 +9080,10 @@ { "Field": "belegnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9011,10 +9091,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9022,10 +9102,10 @@ { "Field": "anfrage", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9033,10 +9113,10 @@ { "Field": "auftrag", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9044,10 +9124,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9055,10 +9135,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9066,10 +9146,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9080,7 +9160,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9088,10 +9168,10 @@ { "Field": "retyp", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9099,10 +9179,10 @@ { "Field": "rechnungname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9110,10 +9190,10 @@ { "Field": "retelefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9121,10 +9201,10 @@ { "Field": "reansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9132,10 +9212,10 @@ { "Field": "retelefax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9143,10 +9223,10 @@ { "Field": "reabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9154,10 +9234,10 @@ { "Field": "reemail", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9165,10 +9245,10 @@ { "Field": "reunterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9176,10 +9256,10 @@ { "Field": "readresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9187,10 +9267,10 @@ { "Field": "restrasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9198,10 +9278,10 @@ { "Field": "replz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9209,10 +9289,10 @@ { "Field": "reort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9220,10 +9300,10 @@ { "Field": "reland", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9231,10 +9311,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9242,10 +9322,10 @@ { "Field": "abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9253,10 +9333,10 @@ { "Field": "unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9264,10 +9344,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9275,10 +9355,10 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9286,10 +9366,10 @@ { "Field": "plz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9297,10 +9377,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9308,10 +9388,10 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9319,10 +9399,10 @@ { "Field": "ustid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9330,10 +9410,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9341,10 +9421,10 @@ { "Field": "telefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9352,10 +9432,10 @@ { "Field": "telefax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9363,10 +9443,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9374,10 +9454,10 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9385,10 +9465,10 @@ { "Field": "versandart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9396,10 +9476,10 @@ { "Field": "vertrieb", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9407,10 +9487,10 @@ { "Field": "zahlungsweise", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9421,7 +9501,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9432,7 +9512,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9443,7 +9523,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9462,10 +9542,10 @@ { "Field": "bank_inhaber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9473,10 +9553,10 @@ { "Field": "bank_institut", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9487,7 +9567,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9498,7 +9578,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9506,10 +9586,10 @@ { "Field": "kreditkarte_typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9517,10 +9597,10 @@ { "Field": "kreditkarte_inhaber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9528,10 +9608,10 @@ { "Field": "kreditkarte_nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9539,10 +9619,10 @@ { "Field": "kreditkarte_pruefnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9553,7 +9633,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9564,7 +9644,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9575,7 +9655,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9586,7 +9666,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9594,10 +9674,10 @@ { "Field": "liefername", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9605,10 +9685,10 @@ { "Field": "lieferabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9616,10 +9696,10 @@ { "Field": "lieferunterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9627,10 +9707,10 @@ { "Field": "lieferland", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9638,10 +9718,10 @@ { "Field": "lieferstrasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9649,10 +9729,10 @@ { "Field": "lieferort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9660,10 +9740,10 @@ { "Field": "lieferplz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9671,10 +9751,10 @@ { "Field": "lieferadresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9682,10 +9762,10 @@ { "Field": "lieferansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9693,10 +9773,10 @@ { "Field": "liefertelefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9704,10 +9784,10 @@ { "Field": "liefertelefax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9715,10 +9795,10 @@ { "Field": "liefermail", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9729,7 +9809,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9740,7 +9820,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9751,7 +9831,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9762,7 +9842,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9773,7 +9853,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9784,7 +9864,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9795,7 +9875,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9803,10 +9883,10 @@ { "Field": "versendet_per", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9814,10 +9894,10 @@ { "Field": "versendet_durch", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9828,7 +9908,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9836,10 +9916,10 @@ { "Field": "vermerk", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9858,10 +9938,10 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9916,7 +9996,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9927,7 +10007,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9935,7 +10015,7 @@ { "Field": "aktion", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -9949,7 +10029,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9971,7 +10051,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10001,10 +10081,10 @@ { "Field": "anschreiben", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10015,7 +10095,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10037,7 +10117,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10048,7 +10128,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10059,7 +10139,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10070,7 +10150,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10081,7 +10161,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10092,7 +10172,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10103,7 +10183,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10166,10 +10246,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "EUR", + "Default": "'eur'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10210,10 +10290,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "firma", + "Default": "'firma'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10224,7 +10304,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10298,7 +10378,7 @@ { "Field": "internebezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -10312,7 +10392,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10353,7 +10433,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -10364,7 +10444,7 @@ { "Field": "liefergln", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -10375,7 +10455,7 @@ { "Field": "lieferemail", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -10386,7 +10466,7 @@ { "Field": "gln", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -10400,7 +10480,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10411,7 +10491,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10433,7 +10513,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10452,7 +10532,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -10463,10 +10543,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10474,10 +10554,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10485,7 +10565,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -10496,7 +10576,7 @@ { "Field": "liefertitel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -10521,7 +10601,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10551,7 +10631,7 @@ { "Field": "internet", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -10562,7 +10642,7 @@ { "Field": "transaktionsnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -10573,7 +10653,7 @@ { "Field": "packstation_inhaber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -10584,7 +10664,7 @@ { "Field": "packstation_station", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -10595,7 +10675,7 @@ { "Field": "packstation_ident", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -10606,7 +10686,7 @@ { "Field": "packstation_plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -10617,7 +10697,7 @@ { "Field": "packstation_ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -10628,7 +10708,7 @@ { "Field": "shopextid", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -10639,7 +10719,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -10650,7 +10730,7 @@ { "Field": "lieferbundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -10662,43 +10742,51 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "projekt", - "Non_unique": "1", - "columns": "projekt" + "columns": [ + "projekt" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] }, { "Key_name": "vertriebid", - "Non_unique": "1", - "columns": "vertriebid" + "columns": [ + "vertriebid" + ] }, { "Key_name": "status", - "Non_unique": "1", - "columns": "status" + "columns": [ + "status" + ] }, { "Key_name": "datum", - "Non_unique": "1", - "columns": "datum" + "columns": [ + "datum" + ] }, { "Key_name": "belegnr", - "Non_unique": "1", - "columns": "belegnr" + "columns": [ + "belegnr" + ] }, { "Key_name": "versandart", - "Non_unique": "1", - "columns": "versandart" + "columns": [ + "versandart" + ] } ] }, @@ -10712,7 +10800,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -10723,7 +10811,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10734,7 +10822,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10745,7 +10833,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10753,10 +10841,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10764,10 +10852,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10775,10 +10863,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10786,10 +10874,10 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10800,7 +10888,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10819,10 +10907,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10833,7 +10921,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10841,10 +10929,10 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10855,7 +10943,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10863,10 +10951,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10874,10 +10962,10 @@ { "Field": "umsatzsteuer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10885,10 +10973,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10899,7 +10987,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10921,7 +11009,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10932,7 +11020,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10943,7 +11031,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10954,7 +11042,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10965,7 +11053,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10976,7 +11064,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10987,7 +11075,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10998,7 +11086,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11009,7 +11097,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11020,7 +11108,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11031,7 +11119,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11039,7 +11127,7 @@ { "Field": "einheit", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -11064,7 +11152,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11072,10 +11160,10 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11083,10 +11171,10 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11094,7 +11182,7 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -11105,10 +11193,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11116,10 +11204,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11127,10 +11215,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11138,10 +11226,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11149,10 +11237,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11160,10 +11248,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11171,10 +11259,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11182,10 +11270,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11193,10 +11281,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11204,10 +11292,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11237,7 +11325,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -11251,7 +11339,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11259,10 +11347,10 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11270,10 +11358,10 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11292,7 +11380,7 @@ { "Field": "einkaufspreiswaehrung", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -11336,7 +11424,7 @@ { "Field": "ekwaehrung", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -11358,10 +11446,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11369,10 +11457,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11380,10 +11468,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11391,10 +11479,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11402,10 +11490,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11413,10 +11501,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11424,10 +11512,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11435,10 +11523,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11446,10 +11534,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11457,10 +11545,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11468,10 +11556,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11479,10 +11567,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11490,10 +11578,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11501,10 +11589,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11512,10 +11600,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11523,10 +11611,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11534,10 +11622,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11545,10 +11633,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11556,10 +11644,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11567,10 +11655,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11578,10 +11666,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11589,10 +11677,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11600,10 +11688,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11611,10 +11699,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11622,10 +11710,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11633,10 +11721,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11644,10 +11732,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11655,10 +11743,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11666,10 +11754,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11677,10 +11765,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11688,7 +11776,7 @@ { "Field": "formelmenge", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -11699,7 +11787,7 @@ { "Field": "formelpreis", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -11721,7 +11809,7 @@ { "Field": "textalternativpreis", "Type": "varchar(50)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -11735,7 +11823,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11746,7 +11834,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11757,7 +11845,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11768,7 +11856,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11779,7 +11867,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11790,7 +11878,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11845,7 +11933,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11856,7 +11944,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11867,7 +11955,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11878,7 +11966,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11887,18 +11975,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "angebot", - "Non_unique": "1", - "columns": "angebot" + "columns": [ + "angebot" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -11912,7 +12003,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -11923,7 +12014,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11934,7 +12025,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11942,10 +12033,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11953,10 +12044,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11965,13 +12056,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "angebot", - "Non_unique": "1", - "columns": "angebot" + "columns": [ + "angebot" + ] } ] }, @@ -11985,7 +12078,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -11993,10 +12086,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12004,10 +12097,10 @@ { "Field": "sprache", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12015,10 +12108,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12026,10 +12119,10 @@ { "Field": "bereich", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12037,10 +12130,10 @@ { "Field": "abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12048,10 +12141,10 @@ { "Field": "unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12059,10 +12152,10 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12070,10 +12163,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12081,10 +12174,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12092,10 +12185,10 @@ { "Field": "plz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12103,10 +12196,10 @@ { "Field": "telefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12114,10 +12207,10 @@ { "Field": "telefax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12125,10 +12218,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12136,10 +12229,10 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12147,10 +12240,10 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12158,10 +12251,10 @@ { "Field": "steuer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12172,7 +12265,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12191,10 +12284,10 @@ { "Field": "mobil", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12202,10 +12295,10 @@ { "Field": "titel", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12213,10 +12306,10 @@ { "Field": "anschreiben", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12224,10 +12317,10 @@ { "Field": "ansprechpartner_land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12235,10 +12328,10 @@ { "Field": "vorname", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12249,7 +12342,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12290,10 +12383,10 @@ { "Field": "interne_bemerkung", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12313,13 +12406,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -12333,7 +12428,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -12375,8 +12470,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -12390,7 +12486,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -12398,7 +12494,7 @@ { "Field": "bezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -12409,7 +12505,7 @@ { "Field": "initkey", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -12420,7 +12516,7 @@ { "Field": "importwarteschlange_name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -12431,7 +12527,7 @@ { "Field": "event_url", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -12442,7 +12538,7 @@ { "Field": "remotedomain", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -12508,10 +12604,10 @@ { "Field": "permissions", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12542,8 +12638,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -12557,7 +12654,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -12565,7 +12662,7 @@ { "Field": "nonce", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -12576,7 +12673,7 @@ { "Field": "opaque", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -12610,8 +12707,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -12625,7 +12723,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -12655,7 +12753,7 @@ { "Field": "tabelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -12677,7 +12775,7 @@ { "Field": "id_ext", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -12700,23 +12798,27 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "uebertragung_account", - "Non_unique": "1", - "columns": "uebertragung_account" + "columns": [ + "uebertragung_account" + ] }, { "Key_name": "id_ext", - "Non_unique": "1", - "columns": "id_ext" + "columns": [ + "id_ext" + ] }, { "Key_name": "api", - "Non_unique": "1", - "columns": "api" + "columns": [ + "api" + ] } ] }, @@ -12730,7 +12832,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -12738,10 +12840,10 @@ { "Field": "key", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "UNI", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12749,10 +12851,10 @@ { "Field": "group", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12761,13 +12863,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "key", - "Non_unique": "0", - "columns": "key" + "columns": [ + "key" + ] } ] }, @@ -12781,7 +12885,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -12811,7 +12915,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -12822,7 +12926,7 @@ { "Field": "bedingung", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -12833,7 +12937,7 @@ { "Field": "parameter", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -12877,7 +12981,7 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -12900,8 +13004,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -12915,7 +13020,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -12945,10 +13050,10 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "angelegt", + "Default": "'angelegt'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12978,7 +13083,7 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -12989,7 +13094,7 @@ { "Field": "parameter1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -13011,7 +13116,7 @@ { "Field": "parameter2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -13022,7 +13127,7 @@ { "Field": "anzeige", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -13066,7 +13171,7 @@ { "Field": "datei", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -13100,18 +13205,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "uebertragung_account", - "Non_unique": "1", - "columns": "uebertragung_account" + "columns": [ + "uebertragung_account" + ] }, { "Key_name": "parameter1int", - "Non_unique": "1", - "columns": "parameter1int" + "columns": [ + "parameter1int" + ] } ] }, @@ -13125,7 +13233,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -13144,10 +13252,10 @@ { "Field": "raw_request", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13155,10 +13263,10 @@ { "Field": "raw_response", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13166,7 +13274,7 @@ { "Field": "type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -13177,7 +13285,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -13188,7 +13296,7 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -13233,18 +13341,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "api_id", - "Non_unique": "1", - "columns": "api_id" + "columns": [ + "api_id" + ] }, { "Key_name": "created_at", - "Non_unique": "1", - "columns": "created_at" + "columns": [ + "created_at" + ] } ] }, @@ -13258,7 +13369,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -13266,7 +13377,7 @@ { "Field": "bezeichnung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -13277,7 +13388,7 @@ { "Field": "typ", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -13291,7 +13402,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13310,7 +13421,7 @@ { "Field": "land", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -13322,13 +13433,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "datum", - "Non_unique": "1", - "columns": "datum" + "columns": [ + "datum" + ] } ] }, @@ -13342,7 +13455,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -13353,7 +13466,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13361,10 +13474,10 @@ { "Field": "aufgabe", "Type": "varchar(255)", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8_unicode_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13372,10 +13485,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8_unicode_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13386,7 +13499,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13397,7 +13510,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13408,7 +13521,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13416,10 +13529,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8_unicode_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13427,10 +13540,10 @@ { "Field": "abgabe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13438,10 +13551,10 @@ { "Field": "abgenommen", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13452,7 +13565,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13460,10 +13573,10 @@ { "Field": "abgenommen_bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13474,7 +13587,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13482,10 +13595,10 @@ { "Field": "art", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13496,7 +13609,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13518,7 +13631,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13529,7 +13642,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13540,7 +13653,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13551,7 +13664,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13562,7 +13675,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13683,7 +13796,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13724,10 +13837,10 @@ { "Field": "kalkulationbasis", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "stundenbasis", + "Default": "'stundenbasis'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13746,7 +13859,7 @@ { "Field": "farbe", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -13757,10 +13870,10 @@ { "Field": "vkkalkulationbasis", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13780,13 +13893,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "projekt", - "Non_unique": "1", - "columns": "projekt" + "columns": [ + "projekt" + ] } ] }, @@ -13800,7 +13915,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -13852,10 +13967,10 @@ { "Field": "type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13864,8 +13979,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -13879,7 +13995,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -13920,7 +14036,7 @@ { "Field": "language_from", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -13931,7 +14047,7 @@ { "Field": "language_to", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -13942,7 +14058,7 @@ { "Field": "property_from", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -13953,7 +14069,7 @@ { "Field": "property_to", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -13964,7 +14080,7 @@ { "Field": "property_value_from", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -13975,7 +14091,7 @@ { "Field": "property_value_to", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -13987,23 +14103,27 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "article_id", - "Non_unique": "1", - "columns": "article_id" + "columns": [ + "article_id" + ] }, { "Key_name": "category_id", - "Non_unique": "1", - "columns": "category_id" + "columns": [ + "category_id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id" + ] } ] }, @@ -14017,7 +14137,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -14025,10 +14145,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14036,10 +14156,10 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14047,10 +14167,10 @@ { "Field": "checksum", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14061,7 +14181,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14069,10 +14189,10 @@ { "Field": "inaktiv", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14083,7 +14203,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14091,10 +14211,10 @@ { "Field": "warengruppe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14102,10 +14222,10 @@ { "Field": "name_de", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14113,10 +14233,10 @@ { "Field": "name_en", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14124,10 +14244,10 @@ { "Field": "kurztext_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14135,10 +14255,10 @@ { "Field": "kurztext_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14146,10 +14266,10 @@ { "Field": "beschreibung_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14157,10 +14277,10 @@ { "Field": "beschreibung_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14168,10 +14288,10 @@ { "Field": "uebersicht_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14179,10 +14299,10 @@ { "Field": "uebersicht_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14190,10 +14310,10 @@ { "Field": "links_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14201,10 +14321,10 @@ { "Field": "links_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14212,10 +14332,10 @@ { "Field": "startseite_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14223,10 +14343,10 @@ { "Field": "startseite_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14234,10 +14354,10 @@ { "Field": "standardbild", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14245,10 +14365,10 @@ { "Field": "herstellerlink", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14256,10 +14376,10 @@ { "Field": "hersteller", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14267,10 +14387,10 @@ { "Field": "teilbar", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14278,10 +14398,10 @@ { "Field": "nteile", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14289,10 +14409,10 @@ { "Field": "seriennummern", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14300,10 +14420,10 @@ { "Field": "lager_platz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14311,10 +14431,10 @@ { "Field": "lieferzeit", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14322,10 +14442,10 @@ { "Field": "lieferzeitmanuell", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14333,10 +14453,10 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14344,10 +14464,10 @@ { "Field": "gewicht", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14355,10 +14475,10 @@ { "Field": "endmontage", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14366,10 +14486,10 @@ { "Field": "funktionstest", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14377,10 +14497,10 @@ { "Field": "artikelcheckliste", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14391,7 +14511,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14402,7 +14522,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14410,10 +14530,10 @@ { "Field": "barcode", "Type": "varchar(7)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14421,10 +14541,10 @@ { "Field": "hinzugefuegt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14432,10 +14552,10 @@ { "Field": "pcbdecal", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14446,7 +14566,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14457,7 +14577,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14468,7 +14588,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14479,7 +14599,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14490,7 +14610,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14498,10 +14618,10 @@ { "Field": "sperrgrund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14512,7 +14632,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14523,7 +14643,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14531,10 +14651,10 @@ { "Field": "umsatzsteuer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14542,10 +14662,10 @@ { "Field": "klasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14556,7 +14676,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14567,7 +14687,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14578,7 +14698,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14589,7 +14709,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14600,7 +14720,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14611,7 +14731,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14619,10 +14739,10 @@ { "Field": "katalogtext_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14630,10 +14750,10 @@ { "Field": "katalogtext_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14641,10 +14761,10 @@ { "Field": "katalogbezeichnung_de", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14652,10 +14772,10 @@ { "Field": "katalogbezeichnung_en", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14666,7 +14786,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14677,7 +14797,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14688,7 +14808,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14699,7 +14819,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14710,7 +14830,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14721,7 +14841,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14732,7 +14852,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14740,10 +14860,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14754,7 +14874,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14765,7 +14885,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14773,10 +14893,10 @@ { "Field": "intern_gesperrtgrund", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14787,7 +14907,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14798,7 +14918,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14809,7 +14929,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14817,10 +14937,10 @@ { "Field": "internkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14831,7 +14951,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14850,10 +14970,10 @@ { "Field": "anabregs_text", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14875,7 +14995,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14883,10 +15003,10 @@ { "Field": "herstellernummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14897,7 +15017,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14908,7 +15028,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14938,7 +15058,7 @@ { "Field": "letzteseriennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -14963,7 +15083,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14985,7 +15105,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15029,7 +15149,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15048,7 +15168,7 @@ { "Field": "freigaberegel", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15062,7 +15182,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15070,7 +15190,7 @@ { "Field": "ean", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15084,7 +15204,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15095,7 +15215,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15106,7 +15226,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15117,7 +15237,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15128,7 +15248,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15139,7 +15259,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15158,10 +15278,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15169,10 +15289,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15180,10 +15300,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15191,10 +15311,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15202,10 +15322,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15213,10 +15333,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15224,7 +15344,7 @@ { "Field": "einheit", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15235,10 +15355,10 @@ { "Field": "webid", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15246,10 +15366,10 @@ { "Field": "lieferzeitmanuell_en", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15260,7 +15380,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15271,7 +15391,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15279,10 +15399,10 @@ { "Field": "produktioninfo", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15290,10 +15410,10 @@ { "Field": "sonderaktion", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15301,10 +15421,10 @@ { "Field": "sonderaktion_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15323,10 +15443,10 @@ { "Field": "leerfeld", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15334,7 +15454,7 @@ { "Field": "zolltarifnummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15345,7 +15465,7 @@ { "Field": "herkunftsland", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15400,10 +15520,10 @@ { "Field": "pseudolager", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15433,7 +15553,7 @@ { "Field": "steuer_erloese_inland_normal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15444,7 +15564,7 @@ { "Field": "steuer_aufwendung_inland_normal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15455,7 +15575,7 @@ { "Field": "steuer_erloese_inland_ermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15466,7 +15586,7 @@ { "Field": "steuer_aufwendung_inland_ermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15477,7 +15597,7 @@ { "Field": "steuer_erloese_inland_steuerfrei", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15488,7 +15608,7 @@ { "Field": "steuer_aufwendung_inland_steuerfrei", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15499,7 +15619,7 @@ { "Field": "steuer_erloese_inland_innergemeinschaftlich", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15510,7 +15630,7 @@ { "Field": "steuer_aufwendung_inland_innergemeinschaftlich", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15521,7 +15641,7 @@ { "Field": "steuer_erloese_inland_eunormal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15532,7 +15652,7 @@ { "Field": "steuer_erloese_inland_nichtsteuerbar", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15543,7 +15663,7 @@ { "Field": "steuer_erloese_inland_euermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15554,7 +15674,7 @@ { "Field": "steuer_aufwendung_inland_nichtsteuerbar", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15565,7 +15685,7 @@ { "Field": "steuer_aufwendung_inland_eunormal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15576,7 +15696,7 @@ { "Field": "steuer_aufwendung_inland_euermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15587,7 +15707,7 @@ { "Field": "steuer_erloese_inland_export", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15598,7 +15718,7 @@ { "Field": "steuer_aufwendung_inland_import", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15631,10 +15751,10 @@ { "Field": "metadescription_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15642,10 +15762,10 @@ { "Field": "metadescription_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15653,10 +15773,10 @@ { "Field": "metakeywords_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15664,10 +15784,10 @@ { "Field": "metakeywords_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15675,10 +15795,10 @@ { "Field": "anabregs_text_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15697,7 +15817,7 @@ { "Field": "bildvorschau", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15785,7 +15905,7 @@ { "Field": "nettogewicht", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15821,7 +15941,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15854,7 +15974,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15862,10 +15982,10 @@ { "Field": "hinweis_einfuegen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15906,7 +16026,7 @@ { "Field": "abckategorie", "Type": "varchar(1)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15942,7 +16062,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15950,10 +16070,10 @@ { "Field": "steuertext_innergemeinschaftlich", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15961,10 +16081,10 @@ { "Field": "steuertext_export", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15972,7 +16092,7 @@ { "Field": "formelmenge", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15983,7 +16103,7 @@ { "Field": "formelpreis", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -15994,10 +16114,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16005,10 +16125,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16016,10 +16136,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16027,10 +16147,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16038,10 +16158,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16049,10 +16169,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16060,10 +16180,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16071,10 +16191,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16082,10 +16202,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16093,10 +16213,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16104,10 +16224,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16115,10 +16235,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16126,10 +16246,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16137,10 +16257,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16148,10 +16268,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16159,10 +16279,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16170,10 +16290,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16181,10 +16301,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16192,10 +16312,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16203,10 +16323,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16214,10 +16334,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16225,10 +16345,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16236,10 +16356,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16247,10 +16367,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16258,10 +16378,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16269,10 +16389,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16280,10 +16400,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16291,10 +16411,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16302,10 +16422,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16313,10 +16433,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16324,10 +16444,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16335,10 +16455,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16346,10 +16466,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16357,10 +16477,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16368,7 +16488,7 @@ { "Field": "ursprungsregion", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -16390,10 +16510,10 @@ { "Field": "metatitle_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16401,10 +16521,10 @@ { "Field": "metatitle_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16423,7 +16543,7 @@ { "Field": "altersfreigabe", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -16456,7 +16576,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -16533,7 +16653,7 @@ { "Field": "berechneterekwaehrung", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -16567,48 +16687,57 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "projekt", - "Non_unique": "1", - "columns": "projekt" + "columns": [ + "projekt" + ] }, { "Key_name": "nummer", - "Non_unique": "1", - "columns": "nummer" + "columns": [ + "nummer" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] }, { "Key_name": "laststorage_changed", - "Non_unique": "1", - "columns": "laststorage_changed" + "columns": [ + "laststorage_changed" + ] }, { "Key_name": "laststorage_sync", - "Non_unique": "1", - "columns": "laststorage_sync" + "columns": [ + "laststorage_sync" + ] }, { "Key_name": "variante_von", - "Non_unique": "1", - "columns": "variante_von" + "columns": [ + "variante_von" + ] }, { "Key_name": "herstellernummer", - "Non_unique": "1", - "columns": "herstellernummer" + "columns": [ + "herstellernummer" + ] }, { "Key_name": "geloescht", - "Non_unique": "1", - "columns": "geloescht" + "columns": [ + "geloescht" + ] } ] }, @@ -16622,7 +16751,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -16652,7 +16781,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -16663,10 +16792,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16677,7 +16806,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16696,7 +16825,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -16730,13 +16859,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -16750,7 +16881,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -16761,7 +16892,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16772,7 +16903,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16783,7 +16914,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16803,8 +16934,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -16818,7 +16950,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -16848,7 +16980,7 @@ { "Field": "project_name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -16859,7 +16991,7 @@ { "Field": "number", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -16870,7 +17002,7 @@ { "Field": "ean", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -16881,7 +17013,7 @@ { "Field": "factory_number", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -16892,7 +17024,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -16903,7 +17035,7 @@ { "Field": "manufactor", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -16914,7 +17046,7 @@ { "Field": "customfield1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -16925,7 +17057,7 @@ { "Field": "customfield2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -16936,7 +17068,7 @@ { "Field": "ek_customnumber", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -16947,7 +17079,7 @@ { "Field": "vk_customnumber", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -16958,7 +17090,7 @@ { "Field": "eigenschaften", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -17002,7 +17134,7 @@ { "Field": "variant_from_name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -17157,13 +17289,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -17177,7 +17311,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -17196,10 +17330,10 @@ { "Field": "sprache", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17210,7 +17344,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17218,10 +17352,10 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17230,13 +17364,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -17250,7 +17386,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -17313,10 +17449,10 @@ { "Field": "pseudolager", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17346,7 +17482,7 @@ { "Field": "lieferzeitmanuell", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -17423,7 +17559,7 @@ { "Field": "last_article_hash", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -17437,7 +17573,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17448,7 +17584,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17459,7 +17595,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17470,7 +17606,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17479,13 +17615,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel", + "shop" + ] } ] }, @@ -17499,7 +17638,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -17543,7 +17682,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17551,7 +17690,7 @@ { "Field": "bearbeiter", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -17563,18 +17702,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "lager_platz", - "Non_unique": "1", - "columns": "lager_platz" + "columns": [ + "lager_platz" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -17588,7 +17730,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -17599,7 +17741,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17610,7 +17752,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17618,10 +17760,10 @@ { "Field": "checksum", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17630,8 +17772,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -17645,7 +17788,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -17664,10 +17807,10 @@ { "Field": "sprache", "Type": "varchar(11)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17675,10 +17818,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17686,10 +17829,10 @@ { "Field": "kurztext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17697,10 +17840,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17708,10 +17851,10 @@ { "Field": "beschreibung_online", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17719,10 +17862,10 @@ { "Field": "meta_title", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17730,10 +17873,10 @@ { "Field": "meta_description", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17741,10 +17884,10 @@ { "Field": "meta_keywords", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17763,10 +17906,10 @@ { "Field": "katalog_bezeichnung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17774,10 +17917,10 @@ { "Field": "katalog_text", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17788,7 +17931,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17808,18 +17951,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop", - "Non_unique": "1", - "columns": "shop" + "columns": [ + "shop" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -17833,7 +17979,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -17844,7 +17990,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17853,8 +17999,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -17868,7 +18015,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -17879,7 +18026,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17890,7 +18037,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17898,10 +18045,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17909,10 +18056,10 @@ { "Field": "name_de", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17920,10 +18067,10 @@ { "Field": "name_en", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17942,10 +18089,10 @@ { "Field": "preisart", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "absolut", + "Default": "'absolut'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17953,7 +18100,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -17987,8 +18134,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -18002,7 +18150,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18044,13 +18192,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "auftrag", - "Non_unique": "1", - "columns": "auftrag" + "Key_name": "artikel", + "columns": [ + "artikel", + "kategorie" + ] } ] }, @@ -18064,7 +18215,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18083,7 +18234,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -18094,10 +18245,10 @@ { "Field": "typ", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": "einzeilig", + "Default": "'einzeilig'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18128,8 +18279,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -18143,7 +18295,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18173,7 +18325,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -18184,7 +18336,7 @@ { "Field": "einheit", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -18195,10 +18347,10 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18218,18 +18370,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "artikeleigenschaften", - "Non_unique": "1", - "columns": "artikeleigenschaften" + "columns": [ + "artikeleigenschaften" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -18243,7 +18398,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18251,10 +18406,10 @@ { "Field": "einheit_de", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18262,10 +18417,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18274,8 +18429,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -18289,7 +18445,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18297,10 +18453,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18308,10 +18464,10 @@ { "Field": "bezeichnung_en", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18322,7 +18478,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18333,7 +18489,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18341,10 +18497,10 @@ { "Field": "beschreibung_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18352,10 +18508,10 @@ { "Field": "beschreibung_en", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18364,13 +18520,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "id", - "Non_unique": "1", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -18384,7 +18542,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18417,7 +18575,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18425,10 +18583,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18436,10 +18594,10 @@ { "Field": "kostenart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18469,10 +18627,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18491,10 +18649,10 @@ { "Field": "kommentar", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18502,7 +18660,7 @@ { "Field": "waehrung", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18516,7 +18674,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18527,7 +18685,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18536,13 +18694,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -18556,7 +18716,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18587,13 +18747,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -18607,7 +18769,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18629,7 +18791,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18637,10 +18799,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18659,7 +18821,7 @@ { "Field": "waehrung", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18681,10 +18843,10 @@ { "Field": "json", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18693,8 +18855,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -18708,7 +18871,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18716,7 +18879,7 @@ { "Field": "bezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18727,7 +18890,7 @@ { "Field": "next_nummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18782,7 +18945,7 @@ { "Field": "steuer_erloese_inland_normal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18793,7 +18956,7 @@ { "Field": "steuer_aufwendung_inland_normal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18804,7 +18967,7 @@ { "Field": "steuer_erloese_inland_ermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18815,7 +18978,7 @@ { "Field": "steuer_aufwendung_inland_ermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18826,7 +18989,7 @@ { "Field": "steuer_erloese_inland_steuerfrei", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18837,7 +19000,7 @@ { "Field": "steuer_aufwendung_inland_steuerfrei", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18848,7 +19011,7 @@ { "Field": "steuer_erloese_inland_innergemeinschaftlich", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18859,7 +19022,7 @@ { "Field": "steuer_aufwendung_inland_innergemeinschaftlich", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18870,7 +19033,7 @@ { "Field": "steuer_erloese_inland_eunormal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18881,7 +19044,7 @@ { "Field": "steuer_erloese_inland_nichtsteuerbar", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18892,7 +19055,7 @@ { "Field": "steuer_erloese_inland_euermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18903,7 +19066,7 @@ { "Field": "steuer_aufwendung_inland_nichtsteuerbar", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18914,7 +19077,7 @@ { "Field": "steuer_aufwendung_inland_eunormal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18925,7 +19088,7 @@ { "Field": "steuer_aufwendung_inland_euermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18936,7 +19099,7 @@ { "Field": "steuer_erloese_inland_export", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18947,7 +19110,7 @@ { "Field": "steuer_aufwendung_inland_import", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -18958,10 +19121,10 @@ { "Field": "steuertext_innergemeinschaftlich", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18969,10 +19132,10 @@ { "Field": "steuertext_export", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18981,13 +19144,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "parent", - "Non_unique": "1", - "columns": "parent" + "columns": [ + "parent" + ] } ] }, @@ -19001,7 +19166,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -19034,7 +19199,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19043,8 +19208,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -19058,7 +19224,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -19077,7 +19243,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -19088,7 +19254,7 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "MUL", "Default": "", @@ -19110,7 +19276,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -19155,23 +19321,27 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] }, { "Key_name": "shopid", - "Non_unique": "1", - "columns": "shopid" + "columns": [ + "shopid" + ] }, { "Key_name": "nummer", - "Non_unique": "1", - "columns": "nummer" + "columns": [ + "nummer" + ] } ] }, @@ -19185,7 +19355,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -19196,7 +19366,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19204,10 +19374,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19215,10 +19385,10 @@ { "Field": "name_de", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19226,10 +19396,10 @@ { "Field": "name_en", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19248,10 +19418,10 @@ { "Field": "preisart", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "absolut", + "Default": "'absolut'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19259,7 +19429,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -19293,8 +19463,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -19308,7 +19479,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -19316,10 +19487,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19327,10 +19498,10 @@ { "Field": "name_de", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19338,10 +19509,10 @@ { "Field": "name_en", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19352,7 +19523,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19363,7 +19534,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19374,7 +19545,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19382,7 +19553,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -19416,8 +19587,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -19431,7 +19603,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -19442,7 +19614,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19450,10 +19622,10 @@ { "Field": "aufgabe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19461,10 +19633,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19472,10 +19644,10 @@ { "Field": "prio", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19486,7 +19658,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19497,7 +19669,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19508,7 +19680,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19519,7 +19691,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19530,7 +19702,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19541,7 +19713,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19552,7 +19724,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19563,7 +19735,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19574,7 +19746,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19585,7 +19757,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19596,7 +19768,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19604,10 +19776,10 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19615,10 +19787,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19640,7 +19812,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19651,7 +19823,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19662,7 +19834,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19673,7 +19845,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19684,7 +19856,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19695,7 +19867,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19706,7 +19878,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19714,10 +19886,10 @@ { "Field": "note_color", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19728,7 +19900,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19739,7 +19911,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19747,10 +19919,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19794,7 +19966,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19816,7 +19988,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19827,7 +19999,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19871,7 +20043,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19882,7 +20054,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19902,13 +20074,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -19922,7 +20096,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -19933,7 +20107,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19944,7 +20118,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19955,7 +20129,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19975,8 +20149,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -19990,7 +20165,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -20001,7 +20176,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20009,10 +20184,10 @@ { "Field": "art", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20020,10 +20195,10 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20031,10 +20206,10 @@ { "Field": "belegnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20042,10 +20217,10 @@ { "Field": "internet", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20053,10 +20228,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20064,10 +20239,10 @@ { "Field": "angebot", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20075,10 +20250,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20086,10 +20261,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20097,10 +20272,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20111,7 +20286,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20119,10 +20294,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20130,10 +20305,10 @@ { "Field": "abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20141,10 +20316,10 @@ { "Field": "unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20152,10 +20327,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20163,10 +20338,10 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20174,10 +20349,10 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20185,10 +20360,10 @@ { "Field": "plz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20196,10 +20371,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20207,10 +20382,10 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20218,10 +20393,10 @@ { "Field": "ustid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20232,7 +20407,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20243,7 +20418,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20251,10 +20426,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20262,10 +20437,10 @@ { "Field": "telefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20273,10 +20448,10 @@ { "Field": "telefax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20284,10 +20459,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20295,10 +20470,10 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20306,10 +20481,10 @@ { "Field": "versandart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20317,10 +20492,10 @@ { "Field": "vertrieb", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20328,10 +20503,10 @@ { "Field": "zahlungsweise", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20342,7 +20517,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20353,7 +20528,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20364,7 +20539,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20372,10 +20547,10 @@ { "Field": "bank_inhaber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20383,10 +20558,10 @@ { "Field": "bank_institut", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20394,10 +20569,10 @@ { "Field": "bank_blz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20405,10 +20580,10 @@ { "Field": "bank_konto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20416,10 +20591,10 @@ { "Field": "kreditkarte_typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20427,10 +20602,10 @@ { "Field": "kreditkarte_inhaber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20438,10 +20613,10 @@ { "Field": "kreditkarte_nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20449,10 +20624,10 @@ { "Field": "kreditkarte_pruefnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20460,10 +20635,10 @@ { "Field": "kreditkarte_monat", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20471,10 +20646,10 @@ { "Field": "kreditkarte_jahr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20485,7 +20660,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20496,7 +20671,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20507,7 +20682,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20515,10 +20690,10 @@ { "Field": "versendet_per", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20526,10 +20701,10 @@ { "Field": "versendet_durch", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20540,7 +20715,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20551,7 +20726,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20562,7 +20737,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20573,7 +20748,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20581,10 +20756,10 @@ { "Field": "liefername", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20592,10 +20767,10 @@ { "Field": "lieferabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20603,10 +20778,10 @@ { "Field": "lieferunterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20614,10 +20789,10 @@ { "Field": "lieferland", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20625,10 +20800,10 @@ { "Field": "lieferstrasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20636,10 +20811,10 @@ { "Field": "lieferort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20647,10 +20822,10 @@ { "Field": "lieferplz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20658,10 +20833,10 @@ { "Field": "lieferadresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20669,10 +20844,10 @@ { "Field": "lieferansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20680,10 +20855,10 @@ { "Field": "packstation_inhaber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20691,10 +20866,10 @@ { "Field": "packstation_station", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20702,10 +20877,10 @@ { "Field": "packstation_ident", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20713,10 +20888,10 @@ { "Field": "packstation_plz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20724,10 +20899,10 @@ { "Field": "packstation_ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20738,7 +20913,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20749,7 +20924,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20760,7 +20935,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20782,7 +20957,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20793,7 +20968,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20804,7 +20979,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20815,7 +20990,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20826,7 +21001,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20837,7 +21012,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20848,7 +21023,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20859,7 +21034,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20870,7 +21045,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20881,7 +21056,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20892,7 +21067,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20903,7 +21078,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20914,7 +21089,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20922,10 +21097,10 @@ { "Field": "stornogrund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20933,10 +21108,10 @@ { "Field": "stornosonstiges", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20944,10 +21119,10 @@ { "Field": "stornorueckzahlung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20966,10 +21141,10 @@ { "Field": "stornobankinhaber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20977,10 +21152,10 @@ { "Field": "stornobankkonto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20988,10 +21163,10 @@ { "Field": "stornobankblz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20999,10 +21174,10 @@ { "Field": "stornobankbank", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21013,7 +21188,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21021,10 +21196,10 @@ { "Field": "stornogutschriftbeleg", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21035,7 +21210,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21043,10 +21218,10 @@ { "Field": "stornomanuellebearbeitung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21054,10 +21229,10 @@ { "Field": "stornokommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21065,10 +21240,10 @@ { "Field": "stornobezahlt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21079,7 +21254,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21087,10 +21262,10 @@ { "Field": "stornobezahltvon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21101,7 +21276,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21109,10 +21284,10 @@ { "Field": "stornorueckzahlungper", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21123,7 +21298,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21134,7 +21309,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21145,7 +21320,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21153,10 +21328,10 @@ { "Field": "kennen", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21178,7 +21353,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21189,7 +21364,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21208,7 +21383,7 @@ { "Field": "transaktionsnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -21277,7 +21452,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21288,7 +21463,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21376,7 +21551,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21384,7 +21559,7 @@ { "Field": "aktion", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -21398,7 +21573,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21409,7 +21584,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21439,7 +21614,7 @@ { "Field": "shopextid", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -21450,7 +21625,7 @@ { "Field": "shopextstatus", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -21461,10 +21636,10 @@ { "Field": "ihrebestellnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21472,10 +21647,10 @@ { "Field": "anschreiben", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21486,7 +21661,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21508,7 +21683,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21519,7 +21694,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21530,7 +21705,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21541,7 +21716,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21552,7 +21727,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21563,7 +21738,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21574,7 +21749,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21585,7 +21760,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21659,10 +21834,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "EUR", + "Default": "'eur'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21673,7 +21848,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21684,7 +21859,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21725,10 +21900,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "firma", + "Default": "'firma'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21739,7 +21914,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21747,7 +21922,7 @@ { "Field": "auftragseingangper", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -21780,10 +21955,10 @@ { "Field": "systemfreitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21824,7 +21999,7 @@ { "Field": "internebezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -21838,7 +22013,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21860,7 +22035,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21923,7 +22098,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -21934,7 +22109,7 @@ { "Field": "bundesland", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -21945,7 +22120,7 @@ { "Field": "gln", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -21956,7 +22131,7 @@ { "Field": "liefergln", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -21967,7 +22142,7 @@ { "Field": "lieferemail", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -21981,7 +22156,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22000,7 +22175,7 @@ { "Field": "deliverythresholdvatid", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -22025,7 +22200,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22044,7 +22219,7 @@ { "Field": "lieferantennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -22055,7 +22230,7 @@ { "Field": "lieferantkdrnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -22069,7 +22244,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22080,7 +22255,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22110,7 +22285,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -22121,10 +22296,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22132,10 +22307,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22143,7 +22318,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -22154,7 +22329,7 @@ { "Field": "liefertitel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -22179,7 +22354,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22220,7 +22395,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -22231,7 +22406,7 @@ { "Field": "lieferbundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -22242,7 +22417,7 @@ { "Field": "kundennummer_buchhaltung", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -22253,7 +22428,7 @@ { "Field": "storage_country", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -22278,7 +22453,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22287,68 +22462,81 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "projekt", - "Non_unique": "1", - "columns": "projekt" + "columns": [ + "projekt" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] }, { "Key_name": "vertriebid", - "Non_unique": "1", - "columns": "vertriebid" + "columns": [ + "vertriebid" + ] }, { "Key_name": "status", - "Non_unique": "1", - "columns": "status" + "columns": [ + "status" + ] }, { "Key_name": "datum", - "Non_unique": "1", - "columns": "datum" + "columns": [ + "datum" + ] }, { "Key_name": "belegnr", - "Non_unique": "1", - "columns": "belegnr" + "columns": [ + "belegnr" + ] }, { "Key_name": "gesamtsumme", - "Non_unique": "1", - "columns": "gesamtsumme" + "columns": [ + "gesamtsumme" + ] }, { "Key_name": "transaktionsnummer", - "Non_unique": "1", - "columns": "transaktionsnummer" + "columns": [ + "transaktionsnummer" + ] }, { "Key_name": "internet", - "Non_unique": "1", - "columns": "internet" + "columns": [ + "internet" + ] }, { "Key_name": "lieferantkdrnummer", - "Non_unique": "1", - "columns": "lieferantkdrnummer" + "columns": [ + "lieferantkdrnummer" + ] }, { "Key_name": "teillieferungvon", - "Non_unique": "1", - "columns": "teillieferungvon" + "columns": [ + "teillieferungvon" + ] }, { "Key_name": "versandart", - "Non_unique": "1", - "columns": "versandart" + "columns": [ + "versandart" + ] } ] }, @@ -22362,7 +22550,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -22373,7 +22561,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22384,7 +22572,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22395,7 +22583,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22403,10 +22591,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22414,10 +22602,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22425,10 +22613,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22436,10 +22624,10 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22450,7 +22638,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22469,10 +22657,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22483,7 +22671,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22491,10 +22679,10 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22505,7 +22693,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22513,10 +22701,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22524,10 +22712,10 @@ { "Field": "umsatzsteuer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22535,10 +22723,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22549,7 +22737,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22560,7 +22748,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22571,7 +22759,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22582,7 +22770,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22604,7 +22792,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22615,7 +22803,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22626,7 +22814,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22637,7 +22825,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22648,7 +22836,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22659,7 +22847,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22670,7 +22858,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22681,7 +22869,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22692,7 +22880,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22703,7 +22891,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22714,7 +22902,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22722,7 +22910,7 @@ { "Field": "einheit", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -22733,10 +22921,10 @@ { "Field": "webid", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22747,7 +22935,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22758,7 +22946,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22766,10 +22954,10 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22777,10 +22965,10 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22788,7 +22976,7 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -22799,10 +22987,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22810,10 +22998,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22821,10 +23009,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22832,10 +23020,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22843,10 +23031,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22854,10 +23042,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22865,10 +23053,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22876,10 +23064,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22887,10 +23075,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22898,10 +23086,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22931,7 +23119,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -22945,7 +23133,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22953,10 +23141,10 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22964,10 +23152,10 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22986,7 +23174,7 @@ { "Field": "einkaufspreiswaehrung", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -23030,7 +23218,7 @@ { "Field": "ekwaehrung", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -23052,10 +23240,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23063,10 +23251,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23074,10 +23262,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23085,10 +23273,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23096,10 +23284,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23107,10 +23295,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23118,10 +23306,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23129,10 +23317,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23140,10 +23328,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23151,10 +23339,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23162,10 +23350,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23173,10 +23361,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23184,10 +23372,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23195,10 +23383,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23206,10 +23394,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23217,10 +23405,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23228,10 +23416,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23239,10 +23427,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23250,10 +23438,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23261,10 +23449,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23272,10 +23460,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23283,10 +23471,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23294,10 +23482,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23305,10 +23493,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23316,10 +23504,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23327,10 +23515,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23338,10 +23526,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23349,10 +23537,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23360,10 +23548,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23371,10 +23559,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23382,7 +23570,7 @@ { "Field": "formelmenge", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -23393,7 +23581,7 @@ { "Field": "formelpreis", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -23437,7 +23625,7 @@ { "Field": "zollwaehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -23473,7 +23661,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23484,7 +23672,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23495,7 +23683,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23506,7 +23694,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23517,7 +23705,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23528,7 +23716,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23539,7 +23727,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23572,7 +23760,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23583,7 +23771,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23594,7 +23782,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23605,7 +23793,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23614,28 +23802,34 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "doctype", - "Non_unique": "1", - "columns": "doctype" + "Key_name": "auftrag", + "columns": [ + "auftrag", + "artikel" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] }, { "Key_name": "auftrag_2", - "Non_unique": "1", - "columns": "auftrag" + "columns": [ + "auftrag" + ] }, { "Key_name": "explodiert_parent", - "Non_unique": "1", - "columns": "explodiert_parent" + "columns": [ + "explodiert_parent" + ] } ] }, @@ -23649,7 +23843,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -23660,7 +23854,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23671,7 +23865,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23679,10 +23873,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23690,10 +23884,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23702,13 +23896,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "auftrag", - "Non_unique": "1", - "columns": "auftrag" + "columns": [ + "auftrag" + ] } ] }, @@ -23722,7 +23918,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -23741,10 +23937,10 @@ { "Field": "mailaddress", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23753,8 +23949,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -23768,7 +23965,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -23779,7 +23976,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23787,10 +23984,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23798,10 +23995,10 @@ { "Field": "dateiname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23812,7 +24009,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23821,8 +24018,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -23836,7 +24034,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -23844,7 +24042,7 @@ { "Field": "doctype", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -23877,7 +24075,7 @@ { "Field": "type", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -23888,7 +24086,7 @@ { "Field": "type2", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -23899,7 +24097,7 @@ { "Field": "type3", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -23910,7 +24108,7 @@ { "Field": "wert", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -23921,7 +24119,7 @@ { "Field": "wert2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -23932,7 +24130,7 @@ { "Field": "wert3", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -23965,7 +24163,7 @@ { "Field": "internebemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -23977,33 +24175,39 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "doctypeid", - "Non_unique": "1", - "columns": "doctypeid" + "columns": [ + "doctypeid" + ] }, { "Key_name": "pos", - "Non_unique": "1", - "columns": "pos" + "columns": [ + "pos" + ] }, { "Key_name": "type", - "Non_unique": "1", - "columns": "type" + "columns": [ + "type" + ] }, { "Key_name": "type2", - "Non_unique": "1", - "columns": "type2" + "columns": [ + "type2" + ] }, { "Key_name": "wert", - "Non_unique": "1", - "columns": "wert" + "columns": [ + "wert" + ] } ] }, @@ -24017,7 +24221,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -24025,10 +24229,10 @@ { "Field": "doctype", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24039,7 +24243,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24050,7 +24254,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24061,7 +24265,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24069,10 +24273,10 @@ { "Field": "postype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24080,10 +24284,10 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24092,13 +24296,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "doctypeid", - "Non_unique": "1", - "columns": "doctypeid" + "columns": [ + "doctypeid" + ] } ] }, @@ -24142,7 +24348,7 @@ { "Field": "belegnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24153,7 +24359,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24164,7 +24370,7 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24222,7 +24428,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24233,7 +24439,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24292,7 +24498,7 @@ { "Field": "belegnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24303,7 +24509,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24314,7 +24520,7 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24383,7 +24589,7 @@ "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24394,7 +24600,7 @@ "Collation": "utf8mb4_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24413,7 +24619,7 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24434,7 +24640,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -24475,7 +24681,7 @@ { "Field": "art", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24486,7 +24692,7 @@ { "Field": "status", "Type": "varchar(24)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24497,7 +24703,7 @@ { "Field": "beleg_status", "Type": "varchar(24)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24508,7 +24714,7 @@ { "Field": "beleg_datum", "Type": "varchar(24)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24519,7 +24725,7 @@ { "Field": "beleg_lieferdatum", "Type": "varchar(24)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24530,7 +24736,7 @@ { "Field": "beleg_tatsaechlicheslieferdatum", "Type": "varchar(24)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24541,7 +24747,7 @@ { "Field": "beleg_versandart", "Type": "varchar(24)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24552,7 +24758,7 @@ { "Field": "beleg_zahlungsweise", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24563,7 +24769,7 @@ { "Field": "beleg_belegnr", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24574,7 +24780,7 @@ { "Field": "beleg_hauptbelegnr", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24585,7 +24791,7 @@ { "Field": "beleg_kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24596,7 +24802,7 @@ { "Field": "beleg_lieferantennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24607,7 +24813,7 @@ { "Field": "beleg_name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24618,7 +24824,7 @@ { "Field": "beleg_abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24629,7 +24835,7 @@ { "Field": "beleg_unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24640,7 +24846,7 @@ { "Field": "beleg_adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24651,7 +24857,7 @@ { "Field": "beleg_ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24662,7 +24868,7 @@ { "Field": "beleg_telefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24673,7 +24879,7 @@ { "Field": "beleg_email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24684,7 +24890,7 @@ { "Field": "beleg_land", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24695,7 +24901,7 @@ { "Field": "beleg_strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24706,7 +24912,7 @@ { "Field": "beleg_plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24717,7 +24923,7 @@ { "Field": "beleg_ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24739,7 +24945,7 @@ { "Field": "beleg_aktion", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24750,10 +24956,10 @@ { "Field": "beleg_internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24761,10 +24967,10 @@ { "Field": "beleg_internebezeichnung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24772,10 +24978,10 @@ { "Field": "beleg_freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24783,7 +24989,7 @@ { "Field": "beleg_ihrebestellnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24794,7 +25000,7 @@ { "Field": "beleg_lieferbedingung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24805,7 +25011,7 @@ { "Field": "beleg_art", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24827,7 +25033,7 @@ { "Field": "artikel_nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24838,7 +25044,7 @@ { "Field": "artikel_ean", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24849,7 +25055,7 @@ { "Field": "artikel_bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24860,10 +25066,10 @@ { "Field": "artikel_beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24915,7 +25121,7 @@ { "Field": "artikel_waehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24929,7 +25135,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24948,7 +25154,7 @@ { "Field": "artikel_umsatzsteuer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24959,7 +25165,7 @@ { "Field": "artikel_einheit", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24970,7 +25176,7 @@ { "Field": "artikel_zolltarifnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24981,7 +25187,7 @@ { "Field": "artikel_herkunftsland", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -24992,7 +25198,7 @@ { "Field": "artikel_artikelnummerkunde", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25003,7 +25209,7 @@ { "Field": "artikel_freifeld1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25014,7 +25220,7 @@ { "Field": "artikel_freifeld2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25025,7 +25231,7 @@ { "Field": "artikel_freifeld3", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25036,7 +25242,7 @@ { "Field": "artikel_freifeld4", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25047,7 +25253,7 @@ { "Field": "artikel_freifeld5", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25058,7 +25264,7 @@ { "Field": "artikel_freifeld6", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25069,7 +25275,7 @@ { "Field": "artikel_freifeld7", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25080,7 +25286,7 @@ { "Field": "artikel_freifeld8", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25091,7 +25297,7 @@ { "Field": "artikel_freifeld9", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25102,7 +25308,7 @@ { "Field": "artikel_freifeld10", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25113,7 +25319,7 @@ { "Field": "artikel_freifeld11", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25124,7 +25330,7 @@ { "Field": "artikel_freifeld12", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25135,7 +25341,7 @@ { "Field": "artikel_freifeld13", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25146,7 +25352,7 @@ { "Field": "artikel_freifeld14", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25157,7 +25363,7 @@ { "Field": "artikel_freifeld15", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25168,7 +25374,7 @@ { "Field": "artikel_freifeld16", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25179,7 +25385,7 @@ { "Field": "artikel_freifeld17", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25190,7 +25396,7 @@ { "Field": "artikel_freifeld18", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25201,7 +25407,7 @@ { "Field": "artikel_freifeld19", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25212,7 +25418,7 @@ { "Field": "artikel_freifeld20", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25245,7 +25451,7 @@ { "Field": "adresse_typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25256,7 +25462,7 @@ { "Field": "adresse_ustid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25267,7 +25473,7 @@ { "Field": "adresse_anschreiben", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25289,7 +25495,7 @@ { "Field": "adresse_freifeld1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25300,7 +25506,7 @@ { "Field": "adresse_freifeld2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25311,7 +25517,7 @@ { "Field": "adresse_freifeld3", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25322,7 +25528,7 @@ { "Field": "adresse_freifeld4", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25333,7 +25539,7 @@ { "Field": "adresse_freifeld5", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25344,7 +25550,7 @@ { "Field": "adresse_freifeld6", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25355,7 +25561,7 @@ { "Field": "adresse_freifeld7", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25366,7 +25572,7 @@ { "Field": "adresse_freifeld8", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25377,7 +25583,7 @@ { "Field": "adresse_freifeld9", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25388,7 +25594,7 @@ { "Field": "adresse_freifeld10", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25399,7 +25605,7 @@ { "Field": "adresse_freifeld11", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25410,7 +25616,7 @@ { "Field": "adresse_freifeld12", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25421,7 +25627,7 @@ { "Field": "adresse_freifeld13", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25432,7 +25638,7 @@ { "Field": "adresse_freifeld14", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25443,7 +25649,7 @@ { "Field": "adresse_freifeld15", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25454,7 +25660,7 @@ { "Field": "adresse_freifeld16", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25465,7 +25671,7 @@ { "Field": "adresse_freifeld17", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25476,7 +25682,7 @@ { "Field": "adresse_freifeld18", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25487,7 +25693,7 @@ { "Field": "adresse_freifeld19", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25498,7 +25704,7 @@ { "Field": "adresse_freifeld20", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25509,7 +25715,7 @@ { "Field": "beleg_sprache", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25520,7 +25726,7 @@ { "Field": "beleg_auftragsnummer", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25531,7 +25737,7 @@ { "Field": "beleg_rechnungsnumer", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25542,7 +25748,7 @@ { "Field": "beleg_liefername", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25553,7 +25759,7 @@ { "Field": "beleg_lieferabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25564,7 +25770,7 @@ { "Field": "beleg_lieferunterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25575,7 +25781,7 @@ { "Field": "beleg_lieferland", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25586,7 +25792,7 @@ { "Field": "beleg_lieferstrasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25597,7 +25803,7 @@ { "Field": "beleg_lieferort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25608,7 +25814,7 @@ { "Field": "beleg_lieferplz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25619,7 +25825,7 @@ { "Field": "beleg_lieferadresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25630,7 +25836,7 @@ { "Field": "beleg_lieferansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25641,7 +25847,7 @@ { "Field": "beleg_abschlagauftrag", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25652,7 +25858,7 @@ { "Field": "beleg_abschlagauftragbezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25696,10 +25902,10 @@ { "Field": "beleg_bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25707,7 +25913,7 @@ { "Field": "beleg_bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25718,7 +25924,7 @@ { "Field": "beleg_waehrung", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25729,7 +25935,7 @@ { "Field": "beleg_bundesstaat", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25740,7 +25946,7 @@ { "Field": "beleg_internet", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25752,8 +25958,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -25767,7 +25974,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -25786,7 +25993,7 @@ { "Field": "art", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25797,7 +26004,7 @@ { "Field": "status", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25808,7 +26015,7 @@ { "Field": "filename", "Type": "varchar(256)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25819,7 +26026,7 @@ { "Field": "command", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25831,8 +26038,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -25876,7 +26084,7 @@ { "Field": "belegnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25887,7 +26095,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25898,7 +26106,7 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -25956,7 +26164,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25967,7 +26175,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25986,7 +26194,7 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -26007,7 +26215,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -26015,7 +26223,7 @@ { "Field": "belegtyp", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -26026,7 +26234,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -26048,10 +26256,10 @@ { "Field": "json", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26059,7 +26267,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -26082,8 +26290,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -26097,7 +26306,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -26105,10 +26314,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26116,10 +26325,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26127,10 +26336,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26138,10 +26347,10 @@ { "Field": "struktur", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26149,10 +26358,10 @@ { "Field": "spaltennamen", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26160,10 +26369,10 @@ { "Field": "spaltenbreite", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26171,10 +26380,10 @@ { "Field": "spaltenausrichtung", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26182,10 +26391,10 @@ { "Field": "variablen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26193,10 +26402,10 @@ { "Field": "sumcols", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26204,10 +26413,10 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26226,7 +26435,7 @@ { "Field": "doctype_actionmenuname", "Type": "varchar(256)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -26237,10 +26446,10 @@ { "Field": "doctype_actionmenufiletype", "Type": "varchar(256)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "csv", + "Default": "'csv'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26281,10 +26490,10 @@ { "Field": "ftphost", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26295,7 +26504,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26303,10 +26512,10 @@ { "Field": "ftpuser", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26314,10 +26523,10 @@ { "Field": "ftppassword", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26328,7 +26537,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26339,7 +26548,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26347,7 +26556,7 @@ { "Field": "ftpnamealternativ", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -26369,10 +26578,10 @@ { "Field": "emailempfaenger", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26380,10 +26589,10 @@ { "Field": "emailbetreff", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26394,7 +26603,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26405,7 +26614,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26413,7 +26622,7 @@ { "Field": "emailnamealternativ", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -26424,10 +26633,10 @@ { "Field": "typ", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "ftp", + "Default": "'ftp'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26436,13 +26645,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "doctype", - "Non_unique": "1", - "columns": "doctype" + "columns": [ + "doctype" + ] } ] }, @@ -26456,7 +26667,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -26464,7 +26675,7 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -26497,7 +26708,7 @@ { "Field": "bestbeforedatebatch", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -26509,13 +26720,17 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "bestellung", - "Non_unique": "1", - "columns": "bestellung" + "Key_name": "doctype", + "columns": [ + "doctype", + "doctype_id", + "position_id" + ] } ] }, @@ -26529,7 +26744,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -26540,7 +26755,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26548,10 +26763,10 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26559,10 +26774,10 @@ { "Field": "bestellungsart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26570,10 +26785,10 @@ { "Field": "belegnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26581,10 +26796,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26592,10 +26807,10 @@ { "Field": "angebot", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26603,10 +26818,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26614,10 +26829,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26625,10 +26840,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26639,7 +26854,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26647,10 +26862,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26658,10 +26873,10 @@ { "Field": "vorname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26669,10 +26884,10 @@ { "Field": "abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26680,10 +26895,10 @@ { "Field": "unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26691,10 +26906,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26702,10 +26917,10 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26713,10 +26928,10 @@ { "Field": "plz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26724,10 +26939,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26735,10 +26950,10 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26749,7 +26964,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26757,10 +26972,10 @@ { "Field": "liefername", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26768,10 +26983,10 @@ { "Field": "lieferabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26779,10 +26994,10 @@ { "Field": "lieferunterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26790,10 +27005,10 @@ { "Field": "lieferland", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26801,10 +27016,10 @@ { "Field": "lieferstrasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26812,10 +27027,10 @@ { "Field": "lieferort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26823,10 +27038,10 @@ { "Field": "lieferplz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26834,10 +27049,10 @@ { "Field": "lieferadresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26845,10 +27060,10 @@ { "Field": "lieferansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26856,10 +27071,10 @@ { "Field": "ustid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26870,7 +27085,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26878,10 +27093,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26889,10 +27104,10 @@ { "Field": "telefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26900,10 +27115,10 @@ { "Field": "telefax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26911,10 +27126,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26922,10 +27137,10 @@ { "Field": "kundennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26933,10 +27148,10 @@ { "Field": "lieferantennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26944,10 +27159,10 @@ { "Field": "versandart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26958,7 +27173,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26966,10 +27181,10 @@ { "Field": "einkaeufer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26980,7 +27195,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26988,10 +27203,10 @@ { "Field": "zahlungsweise", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26999,10 +27214,10 @@ { "Field": "zahlungsstatus", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27013,7 +27228,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27024,7 +27239,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27035,7 +27250,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27054,10 +27269,10 @@ { "Field": "bank_inhaber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27065,10 +27280,10 @@ { "Field": "bank_institut", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27079,7 +27294,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27090,7 +27305,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27098,10 +27313,10 @@ { "Field": "paypalaccount", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27112,7 +27327,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27123,7 +27338,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27134,7 +27349,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27145,7 +27360,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27153,10 +27368,10 @@ { "Field": "versendet_per", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27164,10 +27379,10 @@ { "Field": "versendet_durch", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27189,7 +27404,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27197,10 +27412,10 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27208,10 +27423,10 @@ { "Field": "anschreiben", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27222,7 +27437,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27296,10 +27511,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "EUR", + "Default": "'eur'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27351,10 +27566,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "firma", + "Default": "'firma'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27362,7 +27577,7 @@ { "Field": "verbindlichkeiteninfo", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -27376,7 +27591,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27409,7 +27624,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27417,7 +27632,7 @@ { "Field": "bestellungbestaetigtper", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -27428,7 +27643,7 @@ { "Field": "bestellungbestaetigtabnummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -27442,7 +27657,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27461,7 +27676,7 @@ { "Field": "internebezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -27475,7 +27690,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27494,7 +27709,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -27505,7 +27720,7 @@ { "Field": "kundennummerlieferant", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -27519,7 +27734,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27560,7 +27775,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -27571,10 +27786,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27582,10 +27797,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27593,7 +27808,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -27604,7 +27819,7 @@ { "Field": "liefertitel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -27618,7 +27833,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27637,7 +27852,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -27648,7 +27863,7 @@ { "Field": "lieferbundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -27660,38 +27875,45 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "projekt", - "Non_unique": "1", - "columns": "projekt" + "columns": [ + "projekt" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] }, { "Key_name": "status", - "Non_unique": "1", - "columns": "status" + "columns": [ + "status" + ] }, { "Key_name": "datum", - "Non_unique": "1", - "columns": "datum" + "columns": [ + "datum" + ] }, { "Key_name": "belegnr", - "Non_unique": "1", - "columns": "belegnr" + "columns": [ + "belegnr" + ] }, { "Key_name": "versandart", - "Non_unique": "1", - "columns": "versandart" + "columns": [ + "versandart" + ] } ] }, @@ -27705,7 +27927,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -27716,7 +27938,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27727,7 +27949,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27738,7 +27960,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27746,10 +27968,10 @@ { "Field": "bezeichnunglieferant", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27757,10 +27979,10 @@ { "Field": "bestellnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27768,10 +27990,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27782,7 +28004,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27801,10 +28023,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27815,7 +28037,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27823,10 +28045,10 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27837,7 +28059,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27845,10 +28067,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27856,10 +28078,10 @@ { "Field": "umsatzsteuer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27867,10 +28089,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27881,7 +28103,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27892,7 +28114,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27900,10 +28122,10 @@ { "Field": "manuellgeliefertbearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27914,7 +28136,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27936,7 +28158,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27944,7 +28166,7 @@ { "Field": "einheit", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -27955,10 +28177,10 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27966,10 +28188,10 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27977,7 +28199,7 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -28010,10 +28232,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28021,10 +28243,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28032,10 +28254,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28043,10 +28265,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28054,10 +28276,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28065,10 +28287,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28076,10 +28298,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28087,10 +28309,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28098,10 +28320,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28109,10 +28331,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28123,7 +28345,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28134,7 +28356,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28145,7 +28367,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28164,7 +28386,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -28178,7 +28400,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28186,10 +28408,10 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28197,10 +28419,10 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28219,10 +28441,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28230,10 +28452,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28241,10 +28463,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28252,10 +28474,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28263,10 +28485,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28274,10 +28496,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28285,10 +28507,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28296,10 +28518,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28307,10 +28529,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28318,10 +28540,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28329,10 +28551,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28340,10 +28562,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28351,10 +28573,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28362,10 +28584,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28373,10 +28595,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28384,10 +28606,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28395,10 +28617,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28406,10 +28628,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28417,10 +28639,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28428,10 +28650,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28439,10 +28661,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28450,10 +28672,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28461,10 +28683,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28472,10 +28694,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28483,10 +28705,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28494,10 +28716,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28505,10 +28727,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28516,10 +28738,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28527,10 +28749,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28538,10 +28760,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28552,7 +28774,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28563,7 +28785,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28574,7 +28796,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28585,7 +28807,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28596,7 +28818,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28605,23 +28827,28 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "user", - "Non_unique": "0", - "columns": "user" + "Key_name": "bestellung", + "columns": [ + "bestellung", + "artikel" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] }, { "Key_name": "bestellung_2", - "Non_unique": "1", - "columns": "bestellung" + "columns": [ + "bestellung" + ] } ] }, @@ -28635,7 +28862,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -28646,7 +28873,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28657,7 +28884,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28665,10 +28892,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28676,10 +28903,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28688,13 +28915,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "bestellung", - "Non_unique": "1", - "columns": "bestellung" + "columns": [ + "bestellung" + ] } ] }, @@ -28708,7 +28937,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -28859,10 +29088,10 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28881,7 +29110,7 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -28970,18 +29199,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] }, { "Key_name": "user", - "Non_unique": "1", - "columns": "user" + "columns": [ + "user" + ] } ] }, @@ -28995,7 +29227,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29048,13 +29280,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -29068,7 +29302,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29098,7 +29332,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -29109,10 +29343,10 @@ { "Field": "nachricht", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29153,7 +29387,7 @@ { "Field": "objekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -29187,8 +29421,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -29202,7 +29437,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29210,10 +29445,10 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29221,10 +29456,10 @@ { "Field": "iso", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29232,10 +29467,10 @@ { "Field": "bundesstaat", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29255,8 +29490,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -29270,7 +29506,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29278,10 +29514,10 @@ { "Field": "uri", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29289,10 +29525,10 @@ { "Field": "change_type", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29301,8 +29537,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -29316,7 +29553,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29336,8 +29573,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -29351,7 +29589,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29359,7 +29597,7 @@ { "Field": "bearbeiter", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -29370,7 +29608,7 @@ { "Field": "module", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -29381,7 +29619,7 @@ { "Field": "action", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -29392,7 +29630,7 @@ { "Field": "tabelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -29426,13 +29664,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "tableid", - "Non_unique": "1", - "columns": "tableid" + "columns": [ + "tableid" + ] } ] }, @@ -29446,7 +29686,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29465,7 +29705,7 @@ { "Field": "fieldname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -29476,10 +29716,10 @@ { "Field": "oldvalue", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29487,10 +29727,10 @@ { "Field": "newvalue", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29499,13 +29739,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "change_log", - "Non_unique": "1", - "columns": "change_log" + "columns": [ + "change_log" + ] } ] }, @@ -29519,7 +29761,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29527,10 +29769,10 @@ { "Field": "charge", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29541,7 +29783,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29552,7 +29794,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29560,10 +29802,10 @@ { "Field": "beschreibung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29574,7 +29816,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29585,7 +29827,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29593,10 +29835,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29607,7 +29849,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29616,8 +29858,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -29631,7 +29874,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29672,10 +29915,10 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29683,10 +29926,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29697,7 +29940,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29738,7 +29981,7 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -29794,18 +30037,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "doctypeid", - "Non_unique": "1", - "columns": "doctypeid" + "columns": [ + "doctypeid" + ] }, { "Key_name": "doctype", - "Non_unique": "1", - "columns": "doctype" + "columns": [ + "doctype" + ] } ] }, @@ -29819,7 +30065,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29830,7 +30076,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29841,7 +30087,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29852,7 +30098,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29860,10 +30106,10 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29874,7 +30120,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29882,10 +30128,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29905,8 +30151,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -29920,7 +30167,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29950,10 +30197,10 @@ { "Field": "message", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29964,7 +30211,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29984,18 +30231,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "user_from", - "Non_unique": "1", - "columns": "user_from" + "columns": [ + "user_from" + ] }, { "Key_name": "user_to", - "Non_unique": "1", - "columns": "user_to" + "columns": [ + "user_to" + ] } ] }, @@ -30009,7 +30259,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30042,7 +30292,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30051,18 +30301,22 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "cronjob_id", - "Non_unique": "1", - "columns": "cronjob_id" + "Key_name": "user", + "columns": [ + "user", + "message" + ] }, { "Key_name": "message", - "Non_unique": "1", - "columns": "message" + "columns": [ + "message" + ] } ] }, @@ -30076,7 +30330,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30084,7 +30338,7 @@ { "Field": "checksum", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -30096,8 +30350,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -30111,7 +30366,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30122,7 +30377,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30141,10 +30396,10 @@ { "Field": "country", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30155,7 +30410,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30166,7 +30421,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30174,10 +30429,10 @@ { "Field": "account", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30208,8 +30463,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -30223,7 +30479,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30242,7 +30498,7 @@ { "Field": "bezeichnung", "Type": "varchar(40)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -30254,8 +30510,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -30269,7 +30526,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30321,7 +30578,7 @@ { "Field": "cronjob_name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -30343,7 +30600,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -30355,13 +30612,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "uid", - "Non_unique": "1", - "columns": "uid" + "Key_name": "cronjob_id", + "columns": [ + "cronjob_id", + "change_time" + ] } ] }, @@ -30375,7 +30635,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30383,10 +30643,10 @@ { "Field": "uid", "Type": "varchar(23)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30405,10 +30665,10 @@ { "Field": "type", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30439,13 +30699,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "inventur", - "Non_unique": "1", - "columns": "inventur" + "Key_name": "uid", + "columns": [ + "uid", + "type" + ] } ] }, @@ -30459,7 +30722,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30467,10 +30730,10 @@ { "Field": "titel", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30478,10 +30741,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30489,10 +30752,10 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30503,7 +30766,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30525,7 +30788,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30534,8 +30797,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -30549,7 +30813,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30560,7 +30824,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30568,10 +30832,10 @@ { "Field": "subjekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30579,10 +30843,10 @@ { "Field": "objekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30590,10 +30854,10 @@ { "Field": "parameter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30634,7 +30898,7 @@ { "Field": "objekt2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -30646,18 +30910,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "datei", - "Non_unique": "1", - "columns": "datei" + "columns": [ + "datei" + ] }, { "Key_name": "parameter", - "Non_unique": "1", - "columns": "parameter" + "columns": [ + "parameter" + ] } ] }, @@ -30671,7 +30938,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30679,7 +30946,7 @@ { "Field": "beschriftung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -30701,7 +30968,7 @@ { "Field": "modul", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -30713,8 +30980,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -30728,7 +30996,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30739,7 +31007,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30747,10 +31015,10 @@ { "Field": "ersteller", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30761,7 +31029,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30772,7 +31040,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30780,10 +31048,10 @@ { "Field": "dateiname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30791,10 +31059,10 @@ { "Field": "bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30813,7 +31081,7 @@ { "Field": "size", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -30825,13 +31093,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "datei", - "Non_unique": "1", - "columns": "datei" + "columns": [ + "datei" + ] } ] }, @@ -30845,7 +31115,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30864,10 +31134,10 @@ { "Field": "pfad", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30876,8 +31146,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -30891,7 +31162,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30899,10 +31170,10 @@ { "Field": "wkz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30913,7 +31184,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30924,7 +31195,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30932,10 +31203,10 @@ { "Field": "belegfeld1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30943,10 +31214,10 @@ { "Field": "belegfeld2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30957,7 +31228,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30965,10 +31236,10 @@ { "Field": "konto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30979,7 +31250,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30987,10 +31258,10 @@ { "Field": "kost1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30998,10 +31269,10 @@ { "Field": "kost2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31009,10 +31280,10 @@ { "Field": "kostmenge", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31023,7 +31294,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31031,10 +31302,10 @@ { "Field": "buchungstext", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31042,10 +31313,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31056,7 +31327,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31067,7 +31338,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31078,7 +31349,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31089,7 +31360,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31098,8 +31369,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -31113,7 +31385,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31121,10 +31393,10 @@ { "Field": "datum", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31143,10 +31415,10 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31155,8 +31427,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -31170,7 +31443,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31178,7 +31451,7 @@ { "Field": "problemcase", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -31201,8 +31474,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -31216,7 +31490,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31224,7 +31498,7 @@ { "Field": "deviceidsource", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -31235,7 +31509,7 @@ { "Field": "deviceiddest", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -31246,10 +31520,10 @@ { "Field": "job", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31260,7 +31534,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31279,7 +31553,7 @@ { "Field": "art", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -31302,8 +31576,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -31317,7 +31592,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31328,7 +31603,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31336,10 +31611,10 @@ { "Field": "kategorie", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31348,8 +31623,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -31363,7 +31639,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31374,7 +31650,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31382,10 +31658,10 @@ { "Field": "meta_key", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31393,10 +31669,10 @@ { "Field": "meta_value", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31405,8 +31681,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -31420,7 +31697,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31428,7 +31705,7 @@ { "Field": "keyword", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -31439,7 +31716,7 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -31450,7 +31727,7 @@ { "Field": "fontstyle", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -31461,7 +31738,7 @@ { "Field": "alignment", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -31472,10 +31749,10 @@ { "Field": "content", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31506,8 +31783,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -31521,7 +31799,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31540,7 +31818,7 @@ { "Field": "language_code", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -31551,10 +31829,10 @@ { "Field": "content", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31573,7 +31851,7 @@ { "Field": "fontstyle", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -31584,7 +31862,7 @@ { "Field": "alignment", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -31596,13 +31874,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "document_customization_infoblock_id", - "Non_unique": "1", - "columns": "document_customization_infoblock_id" + "columns": [ + "document_customization_infoblock_id" + ] } ] }, @@ -31616,7 +31896,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31627,7 +31907,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31638,7 +31918,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31646,10 +31926,10 @@ { "Field": "typ", "Type": "varchar(24)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31657,10 +31937,10 @@ { "Field": "von", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31668,10 +31948,10 @@ { "Field": "firma", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31679,10 +31959,10 @@ { "Field": "an", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31690,10 +31970,10 @@ { "Field": "email_an", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31701,10 +31981,10 @@ { "Field": "firma_an", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31712,10 +31992,10 @@ { "Field": "adresse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31723,10 +32003,10 @@ { "Field": "plz", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31734,10 +32014,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31745,10 +32025,10 @@ { "Field": "land", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31759,7 +32039,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31767,10 +32047,10 @@ { "Field": "betreff", "Type": "varchar(1023)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31778,10 +32058,10 @@ { "Field": "content", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31792,7 +32072,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31800,10 +32080,10 @@ { "Field": "send_as", "Type": "varchar(24)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31811,10 +32091,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31825,7 +32105,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31836,7 +32116,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31869,7 +32149,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31877,10 +32157,10 @@ { "Field": "ansprechpartner", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31888,10 +32168,10 @@ { "Field": "email_cc", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31899,10 +32179,10 @@ { "Field": "email_bcc", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31910,10 +32190,10 @@ { "Field": "bearbeiter", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31924,7 +32204,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31943,7 +32223,7 @@ { "Field": "internebezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -31955,13 +32235,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse_to", - "Non_unique": "1", - "columns": "adresse_to" + "columns": [ + "adresse_to" + ] } ] }, @@ -31975,7 +32257,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31983,10 +32265,10 @@ { "Field": "dokument", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31997,7 +32279,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32005,10 +32287,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32019,7 +32301,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32027,10 +32309,10 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32041,7 +32323,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32052,7 +32334,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32060,10 +32342,10 @@ { "Field": "art", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32071,10 +32353,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32082,10 +32364,10 @@ { "Field": "text", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32096,7 +32378,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32107,7 +32389,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32129,7 +32411,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32138,13 +32420,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -32158,7 +32442,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -32189,13 +32473,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "gruppe", - "Non_unique": "1", - "columns": "gruppe" + "columns": [ + "gruppe" + ] } ] }, @@ -32209,7 +32495,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -32217,7 +32503,7 @@ { "Field": "bezeichnung", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -32459,10 +32745,10 @@ { "Field": "belegeautoversand", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "standardauftrag", + "Default": "'standardauftrag'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32471,13 +32757,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -32491,7 +32779,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -32499,10 +32787,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32510,10 +32798,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32521,10 +32809,10 @@ { "Field": "befehl", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32535,7 +32823,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32546,7 +32834,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32554,7 +32842,7 @@ { "Field": "tomail", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -32565,10 +32853,10 @@ { "Field": "tomailtext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32576,10 +32864,10 @@ { "Field": "tomailsubject", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32587,7 +32875,7 @@ { "Field": "adapterboxip", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -32598,7 +32886,7 @@ { "Field": "adapterboxseriennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -32609,7 +32897,7 @@ { "Field": "adapterboxpasswort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -32620,7 +32908,7 @@ { "Field": "anbindung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -32653,7 +32941,7 @@ { "Field": "format", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -32675,10 +32963,10 @@ { "Field": "json", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32687,8 +32975,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -32702,7 +32991,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -32721,7 +33010,7 @@ { "Field": "filename", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -32735,7 +33024,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32743,7 +33032,7 @@ { "Field": "description", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -32754,7 +33043,7 @@ { "Field": "anzahl", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -32765,7 +33054,7 @@ { "Field": "befehl", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -32776,7 +33065,7 @@ { "Field": "anbindung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -32790,7 +33079,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32821,18 +33110,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "drucker", - "Non_unique": "1", - "columns": "drucker" + "columns": [ + "drucker" + ] }, { "Key_name": "user", - "Non_unique": "1", - "columns": "user" + "columns": [ + "user" + ] } ] }, @@ -32846,7 +33138,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -32868,7 +33160,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32876,10 +33168,10 @@ { "Field": "kommentar", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32888,8 +33180,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -32903,7 +33196,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -32914,7 +33207,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32925,7 +33218,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32933,10 +33226,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32944,10 +33237,10 @@ { "Field": "konto", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32955,10 +33248,10 @@ { "Field": "blz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32969,7 +33262,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32977,10 +33270,10 @@ { "Field": "vz1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32988,10 +33281,10 @@ { "Field": "vz2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32999,10 +33292,10 @@ { "Field": "vz3", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33013,7 +33306,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33024,7 +33317,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33035,7 +33328,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33046,7 +33339,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33054,10 +33347,10 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33068,7 +33361,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33076,10 +33369,10 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "EUR", + "Default": "'eur'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33120,7 +33413,7 @@ { "Field": "mandatsreferenzart", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -33131,7 +33424,7 @@ { "Field": "mandatsreferenzwdhart", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -33143,8 +33436,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -33158,7 +33452,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33166,10 +33460,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33177,10 +33471,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33188,10 +33482,10 @@ { "Field": "inhalt", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33202,7 +33496,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33210,10 +33504,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33221,10 +33515,10 @@ { "Field": "art", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33235,7 +33529,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33255,8 +33549,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -33270,7 +33565,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33281,7 +33576,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33289,10 +33584,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33300,7 +33595,7 @@ { "Field": "dateiname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -33311,7 +33606,7 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -33322,7 +33617,7 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -33333,10 +33628,10 @@ { "Field": "nachricht", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33347,7 +33642,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33355,7 +33650,7 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -33399,7 +33694,7 @@ { "Field": "partnerid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -33410,7 +33705,7 @@ { "Field": "kundennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -33422,8 +33717,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -33437,7 +33733,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33445,10 +33741,10 @@ { "Field": "ean", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33468,8 +33764,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -33483,7 +33780,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33494,7 +33791,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33502,7 +33799,7 @@ { "Field": "request", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -33513,7 +33810,7 @@ { "Field": "type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -33527,7 +33824,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33547,18 +33844,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "article_id", - "Non_unique": "1", - "columns": "article_id" + "columns": [ + "article_id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id" + ] } ] }, @@ -33572,7 +33872,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33580,10 +33880,10 @@ { "Field": "itemid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33594,7 +33894,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33602,7 +33902,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -33613,7 +33913,7 @@ { "Field": "variation", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -33624,7 +33924,7 @@ { "Field": "sku", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -33638,7 +33938,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33669,8 +33969,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -33684,7 +33985,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33692,7 +33993,7 @@ { "Field": "bild", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -33703,7 +34004,7 @@ { "Field": "url", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -33714,7 +34015,7 @@ { "Field": "itemid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -33725,7 +34026,7 @@ { "Field": "sku", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -33739,7 +34040,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33747,7 +34048,7 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -33761,7 +34062,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33769,10 +34070,10 @@ { "Field": "dauer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33783,7 +34084,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33849,7 +34150,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33869,8 +34170,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -33884,7 +34186,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33895,7 +34197,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33903,7 +34205,7 @@ { "Field": "request", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -33914,7 +34216,7 @@ { "Field": "type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -33925,7 +34227,7 @@ { "Field": "parameter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -33948,13 +34250,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id" + ] } ] }, @@ -33968,7 +34272,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33976,10 +34280,10 @@ { "Field": "job_id", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33987,10 +34291,10 @@ { "Field": "file_id", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33998,10 +34302,10 @@ { "Field": "response_file_id", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34012,7 +34316,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34020,10 +34324,10 @@ { "Field": "uuid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34031,10 +34335,10 @@ { "Field": "type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34042,7 +34346,7 @@ { "Field": "description", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -34053,7 +34357,7 @@ { "Field": "notes", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -34064,10 +34368,10 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34075,7 +34379,7 @@ { "Field": "next_action", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -34109,18 +34413,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "job_id", - "Non_unique": "1", - "columns": "job_id" + "columns": [ + "job_id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id" + ] } ] }, @@ -34134,7 +34441,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34145,7 +34452,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34153,7 +34460,7 @@ { "Field": "itemid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -34167,7 +34474,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34175,7 +34482,7 @@ { "Field": "fee_type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -34186,7 +34493,7 @@ { "Field": "fee_description", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -34197,7 +34504,7 @@ { "Field": "fee_amount", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -34219,7 +34526,7 @@ { "Field": "fee_memo", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -34231,8 +34538,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -34246,7 +34554,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34257,7 +34565,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34268,7 +34576,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34279,7 +34587,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34290,7 +34598,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34301,7 +34609,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34309,10 +34617,10 @@ { "Field": "specname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34320,10 +34628,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34331,10 +34639,10 @@ { "Field": "cardinality", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34353,10 +34661,10 @@ { "Field": "options", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34364,10 +34672,10 @@ { "Field": "val", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34387,8 +34695,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -34402,7 +34711,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34413,7 +34722,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34421,10 +34730,10 @@ { "Field": "kategorie", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34435,7 +34744,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34443,10 +34752,10 @@ { "Field": "vorschlagbezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34454,10 +34763,10 @@ { "Field": "vorschlagparentsid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34465,10 +34774,10 @@ { "Field": "vorschlagparentsbezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34488,8 +34797,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -34503,7 +34813,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34511,10 +34821,10 @@ { "Field": "kategorie", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34525,7 +34835,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34533,10 +34843,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34547,7 +34857,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34556,8 +34866,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -34571,7 +34882,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34582,7 +34893,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34593,7 +34904,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34604,7 +34915,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34612,10 +34923,10 @@ { "Field": "url", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34624,23 +34935,27 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "ebay_staging_listing_id", - "Non_unique": "1", - "columns": "ebay_staging_listing_id" + "columns": [ + "ebay_staging_listing_id" + ] }, { "Key_name": "ebay_staging_listing_variation_id", - "Non_unique": "1", - "columns": "ebay_staging_listing_variation_id" + "columns": [ + "ebay_staging_listing_variation_id" + ] }, { "Key_name": "file_id", - "Non_unique": "1", - "columns": "file_id" + "columns": [ + "file_id" + ] } ] }, @@ -34654,7 +34969,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34665,7 +34980,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34684,10 +34999,10 @@ { "Field": "profilid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34695,10 +35010,10 @@ { "Field": "profiltype", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34706,10 +35021,10 @@ { "Field": "profilname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34717,10 +35032,10 @@ { "Field": "profilsummary", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34728,10 +35043,10 @@ { "Field": "category", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34742,7 +35057,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34751,8 +35066,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -34766,7 +35082,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34777,7 +35093,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34785,10 +35101,10 @@ { "Field": "token", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34796,10 +35112,10 @@ { "Field": "scope", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34810,7 +35126,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34819,8 +35135,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -34834,7 +35151,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34845,7 +35162,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34856,7 +35173,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34875,10 +35192,10 @@ { "Field": "item_id_external", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34886,10 +35203,10 @@ { "Field": "ebay_primary_category_id_external", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34897,10 +35214,10 @@ { "Field": "ebay_primary_store_category_id_external", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34908,10 +35225,10 @@ { "Field": "ebay_secondary_store_category_id_external", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34919,10 +35236,10 @@ { "Field": "ebay_secondary_category_id_external", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34930,10 +35247,10 @@ { "Field": "ebay_shipping_profile_id_external", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34941,10 +35258,10 @@ { "Field": "ebay_return_profile_id_external", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34952,10 +35269,10 @@ { "Field": "ebay_payment_profile_id_external", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34996,10 +35313,10 @@ { "Field": "type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35007,10 +35324,10 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35018,10 +35335,10 @@ { "Field": "sku", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35029,10 +35346,10 @@ { "Field": "ean", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35040,10 +35357,10 @@ { "Field": "title", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35051,10 +35368,10 @@ { "Field": "listing_duration", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35062,10 +35379,10 @@ { "Field": "inventory_tracking_method", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35073,10 +35390,10 @@ { "Field": "condition_display_name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35084,10 +35401,10 @@ { "Field": "condition_id_external", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35095,10 +35412,10 @@ { "Field": "condition_description", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35106,10 +35423,10 @@ { "Field": "delivery_time", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35117,10 +35434,10 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35129,18 +35446,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "article_id", - "Non_unique": "1", - "columns": "article_id" + "columns": [ + "article_id" + ] }, { "Key_name": "template_id", - "Non_unique": "1", - "columns": "template_id" + "columns": [ + "template_id" + ] } ] }, @@ -35154,7 +35474,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35165,7 +35485,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35173,10 +35493,10 @@ { "Field": "property", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35184,10 +35504,10 @@ { "Field": "value", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35196,13 +35516,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "ebay_staging_listing_id", - "Non_unique": "1", - "columns": "ebay_staging_listing_id" + "columns": [ + "ebay_staging_listing_id" + ] } ] }, @@ -35216,7 +35538,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35227,7 +35549,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35238,7 +35560,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35246,10 +35568,10 @@ { "Field": "sku", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35257,10 +35579,10 @@ { "Field": "title", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35269,18 +35591,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "article_id", - "Non_unique": "1", - "columns": "article_id" + "columns": [ + "article_id" + ] }, { "Key_name": "ebay_staging_listing_id", - "Non_unique": "1", - "columns": "ebay_staging_listing_id" + "columns": [ + "ebay_staging_listing_id" + ] } ] }, @@ -35294,7 +35619,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35305,7 +35630,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35313,10 +35638,10 @@ { "Field": "property", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35324,10 +35649,10 @@ { "Field": "value", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35336,8 +35661,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -35351,7 +35677,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35362,7 +35688,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35373,7 +35699,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35381,10 +35707,10 @@ { "Field": "kategorie", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35392,10 +35718,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35404,8 +35730,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -35419,7 +35746,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35430,7 +35757,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35438,10 +35765,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35449,10 +35776,10 @@ { "Field": "template", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35461,8 +35788,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -35476,7 +35804,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35487,7 +35815,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35495,10 +35823,10 @@ { "Field": "url", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35509,7 +35837,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35518,8 +35846,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -35533,7 +35862,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35541,10 +35870,10 @@ { "Field": "beschreibung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35552,10 +35881,10 @@ { "Field": "carrier", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35563,7 +35892,7 @@ { "Field": "customcarrier", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -35596,7 +35925,7 @@ { "Field": "service", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -35607,7 +35936,7 @@ { "Field": "kategorie", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -35641,8 +35970,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -35656,7 +35986,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35698,8 +36028,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -35713,7 +36044,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35743,7 +36074,7 @@ { "Field": "hauptkategorie", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -35754,7 +36085,7 @@ { "Field": "unterkategorie", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -35765,7 +36096,7 @@ { "Field": "einheit", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -35776,7 +36107,7 @@ { "Field": "wert", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -35788,8 +36119,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -35803,7 +36135,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35814,7 +36146,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35825,7 +36157,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35833,10 +36165,10 @@ { "Field": "objekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35844,10 +36176,10 @@ { "Field": "projekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35866,10 +36198,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35888,10 +36220,10 @@ { "Field": "vpe", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "1", + "Default": "'1'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35902,7 +36234,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35913,7 +36245,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35924,7 +36256,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35935,7 +36267,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35946,7 +36278,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35957,7 +36289,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35965,10 +36297,10 @@ { "Field": "bestellnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35976,10 +36308,10 @@ { "Field": "bezeichnunglieferant", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35990,7 +36322,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35998,10 +36330,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36009,10 +36341,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36034,7 +36366,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36045,7 +36377,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36056,7 +36388,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36089,7 +36421,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36100,7 +36432,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36119,10 +36451,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36141,10 +36473,10 @@ { "Field": "lieferzeit_standard_einheit", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36152,10 +36484,10 @@ { "Field": "lieferzeit_aktuell_einheit", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36164,28 +36496,33 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] }, { "Key_name": "projekt", - "Non_unique": "1", - "columns": "projekt" + "columns": [ + "projekt" + ] }, { "Key_name": "bestellnummer", - "Non_unique": "1", - "columns": "bestellnummer" + "columns": [ + "bestellnummer" + ] } ] }, @@ -36199,7 +36536,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -36207,10 +36544,10 @@ { "Field": "angezeigtername", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36218,7 +36555,7 @@ { "Field": "internebeschreibung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -36229,10 +36566,10 @@ { "Field": "benutzername", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36240,10 +36577,10 @@ { "Field": "passwort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36251,10 +36588,10 @@ { "Field": "server", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36262,10 +36599,10 @@ { "Field": "smtp", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36276,7 +36613,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36287,7 +36624,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36295,10 +36632,10 @@ { "Field": "imap_sentfolder", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "INBOX.Sent", + "Default": "'inbox.sent'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36331,7 +36668,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36342,7 +36679,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36350,10 +36687,10 @@ { "Field": "autoresponderbetreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36361,10 +36698,10 @@ { "Field": "autorespondertext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36375,7 +36712,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36386,7 +36723,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36397,7 +36734,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36408,7 +36745,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36416,10 +36753,10 @@ { "Field": "loeschtage", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36430,7 +36767,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36460,10 +36797,10 @@ { "Field": "ticketqueue", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36471,10 +36808,10 @@ { "Field": "ticketprojekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36526,7 +36863,7 @@ { "Field": "smtp_frommail", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -36537,7 +36874,7 @@ { "Field": "smtp_fromname", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -36548,7 +36885,7 @@ { "Field": "client_alias", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -36559,7 +36896,7 @@ { "Field": "smtp_authtype", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -36570,10 +36907,10 @@ { "Field": "smtp_authparam", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36614,10 +36951,10 @@ { "Field": "signatur", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36639,7 +36976,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36647,7 +36984,7 @@ { "Field": "email", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -36659,8 +36996,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -36674,7 +37012,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -36685,7 +37023,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36693,10 +37031,10 @@ { "Field": "subject", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36704,7 +37042,7 @@ { "Field": "sender", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -36715,10 +37053,10 @@ { "Field": "action", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36726,10 +37064,10 @@ { "Field": "action_html", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36740,7 +37078,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36748,7 +37086,7 @@ { "Field": "anhang", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -36781,10 +37119,10 @@ { "Field": "checksum", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36825,10 +37163,10 @@ { "Field": "phpobj", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36839,7 +37177,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36850,7 +37188,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36902,7 +37240,7 @@ { "Field": "mail_replyto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -36913,7 +37251,7 @@ { "Field": "verfasser_replyto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -36925,48 +37263,57 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "webmail", - "Non_unique": "1", - "columns": "webmail" + "columns": [ + "webmail" + ] }, { "Key_name": "gelesen", - "Non_unique": "1", - "columns": "gelesen" + "columns": [ + "gelesen" + ] }, { "Key_name": "spam", - "Non_unique": "1", - "columns": "spam" + "columns": [ + "spam" + ] }, { "Key_name": "geloescht", - "Non_unique": "1", - "columns": "geloescht" + "columns": [ + "geloescht" + ] }, { "Key_name": "antworten", - "Non_unique": "1", - "columns": "antworten" + "columns": [ + "antworten" + ] }, { "Key_name": "warteschlange", - "Non_unique": "1", - "columns": "warteschlange" + "columns": [ + "warteschlange" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] }, { "Key_name": "checksum", - "Non_unique": "1", - "columns": "checksum" + "columns": [ + "checksum" + ] } ] }, @@ -36980,7 +37327,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -36991,7 +37338,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37010,10 +37357,10 @@ { "Field": "status", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37021,10 +37368,10 @@ { "Field": "datei", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37033,8 +37380,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -37048,7 +37396,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -37056,7 +37404,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -37067,10 +37415,10 @@ { "Field": "xml", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37078,10 +37426,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37100,7 +37448,7 @@ { "Field": "verwendenals", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -37166,7 +37514,7 @@ { "Field": "format", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -37200,8 +37548,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -37215,7 +37564,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -37223,10 +37572,10 @@ { "Field": "title", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37234,7 +37583,7 @@ { "Field": "path", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -37245,10 +37594,10 @@ { "Field": "description", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37256,10 +37605,10 @@ { "Field": "version", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37267,10 +37616,10 @@ { "Field": "id_external", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37278,10 +37627,10 @@ { "Field": "parent_id_external", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37290,8 +37639,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -37305,7 +37655,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -37316,7 +37666,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37324,10 +37674,10 @@ { "Field": "etsy_transaction_id", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37338,7 +37688,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37346,10 +37696,10 @@ { "Field": "etsy_title", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37357,10 +37707,10 @@ { "Field": "etsy_buyer_email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37371,7 +37721,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37382,7 +37732,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37391,8 +37741,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -37406,7 +37757,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -37414,10 +37765,10 @@ { "Field": "beschreibung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37425,10 +37776,10 @@ { "Field": "kategorie", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37439,7 +37790,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37447,10 +37798,10 @@ { "Field": "objekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37458,10 +37809,10 @@ { "Field": "parameter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37469,10 +37820,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37481,8 +37832,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -37496,7 +37848,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -37515,10 +37867,10 @@ { "Field": "eventname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37526,10 +37878,10 @@ { "Field": "parameter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37537,10 +37889,10 @@ { "Field": "module", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37548,10 +37900,10 @@ { "Field": "action", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37562,7 +37914,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37570,10 +37922,10 @@ { "Field": "kommentar", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37593,8 +37945,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -37608,7 +37961,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37616,10 +37969,10 @@ { "Field": "reg", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37627,10 +37980,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37641,7 +37994,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37652,7 +38005,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37663,7 +38016,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37674,7 +38027,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37685,7 +38038,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37703,7 +38056,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -37711,10 +38064,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37722,10 +38075,10 @@ { "Field": "ziel", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37733,10 +38086,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37744,10 +38097,10 @@ { "Field": "fields", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37755,10 +38108,10 @@ { "Field": "fields_where", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37769,7 +38122,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37777,10 +38130,10 @@ { "Field": "mitarbeiterletzterexport", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37788,10 +38141,10 @@ { "Field": "exporttrennzeichen", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37802,7 +38155,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37810,10 +38163,10 @@ { "Field": "exportdatenmaskierung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37821,10 +38174,10 @@ { "Field": "exportzeichensatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37866,8 +38219,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -37881,7 +38235,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -37900,10 +38254,10 @@ { "Field": "doctype", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37911,10 +38265,10 @@ { "Field": "requestertype", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37944,10 +38298,10 @@ { "Field": "releasetype", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37966,10 +38320,10 @@ { "Field": "type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37989,8 +38343,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -38004,7 +38359,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -38012,10 +38367,10 @@ { "Field": "doctype", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38023,10 +38378,10 @@ { "Field": "requestertype", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38056,10 +38411,10 @@ { "Field": "releasetype", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38090,8 +38445,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -38105,7 +38461,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -38113,7 +38469,7 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -38168,7 +38524,7 @@ { "Field": "price_type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -38179,7 +38535,7 @@ { "Field": "currency", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -38190,7 +38546,7 @@ { "Field": "comment", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -38213,23 +38569,27 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "doctype", - "Non_unique": "1", - "columns": "doctype" + "columns": [ + "doctype" + ] }, { "Key_name": "doctype_id", - "Non_unique": "1", - "columns": "doctype_id" + "columns": [ + "doctype_id" + ] }, { "Key_name": "price_type", - "Non_unique": "1", - "columns": "price_type" + "columns": [ + "price_type" + ] } ] }, @@ -38243,7 +38603,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -38262,10 +38622,10 @@ { "Field": "label", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38273,10 +38633,10 @@ { "Field": "file_link", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38284,10 +38644,10 @@ { "Field": "internal_note", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38296,8 +38656,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -38311,7 +38672,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -38319,10 +38680,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38333,7 +38694,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38342,8 +38703,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -38357,7 +38719,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -38368,7 +38730,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38379,7 +38741,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38390,7 +38752,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38398,10 +38760,10 @@ { "Field": "benutzername", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38409,10 +38771,10 @@ { "Field": "passwort", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38420,10 +38782,10 @@ { "Field": "host", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38431,10 +38793,10 @@ { "Field": "port", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38453,10 +38815,10 @@ { "Field": "signatur", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38467,7 +38829,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38530,10 +38892,10 @@ { "Field": "deviceserials", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38541,10 +38903,10 @@ { "Field": "lizenz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38552,10 +38914,10 @@ { "Field": "schluessel", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38577,7 +38939,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38588,7 +38950,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38599,7 +38961,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38772,10 +39134,10 @@ { "Field": "zahlung_rechnung_sofort_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38783,10 +39145,10 @@ { "Field": "zahlung_rechnung_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38794,10 +39156,10 @@ { "Field": "zahlung_vorkasse_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38805,10 +39167,10 @@ { "Field": "zahlung_lastschrift_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38816,10 +39178,10 @@ { "Field": "zahlung_nachnahme_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38827,10 +39189,10 @@ { "Field": "zahlung_bar_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38838,10 +39200,10 @@ { "Field": "zahlung_paypal_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38849,10 +39211,10 @@ { "Field": "zahlung_amazon_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38860,10 +39222,10 @@ { "Field": "zahlung_kreditkarte_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38871,10 +39233,10 @@ { "Field": "zahlung_ratenzahlung_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38885,7 +39247,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38893,10 +39255,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38904,10 +39266,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38915,10 +39277,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38926,10 +39288,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38937,10 +39299,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38948,10 +39310,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38959,10 +39321,10 @@ { "Field": "firmenfarbehell", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38970,10 +39332,10 @@ { "Field": "firmenfarbedunkel", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38981,10 +39343,10 @@ { "Field": "firmenfarbeganzdunkel", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38992,10 +39354,10 @@ { "Field": "navigationfarbe", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39003,10 +39365,10 @@ { "Field": "navigationfarbeschrift", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39014,10 +39376,10 @@ { "Field": "unternavigationfarbe", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39025,10 +39387,10 @@ { "Field": "unternavigationfarbeschrift", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39039,7 +39401,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39047,10 +39409,10 @@ { "Field": "rechnung_header", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39058,10 +39420,10 @@ { "Field": "lieferschein_header", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39069,10 +39431,10 @@ { "Field": "angebot_header", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39080,10 +39442,10 @@ { "Field": "auftrag_header", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39091,10 +39453,10 @@ { "Field": "gutschrift_header", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39102,10 +39464,10 @@ { "Field": "bestellung_header", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39113,10 +39475,10 @@ { "Field": "arbeitsnachweis_header", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39124,10 +39486,10 @@ { "Field": "provisionsgutschrift_header", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39135,10 +39497,10 @@ { "Field": "rechnung_footer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39146,10 +39508,10 @@ { "Field": "lieferschein_footer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39157,10 +39519,10 @@ { "Field": "angebot_footer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39168,10 +39530,10 @@ { "Field": "auftrag_footer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39179,10 +39541,10 @@ { "Field": "gutschrift_footer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39190,10 +39552,10 @@ { "Field": "bestellung_footer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39201,10 +39563,10 @@ { "Field": "arbeitsnachweis_footer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39212,10 +39574,10 @@ { "Field": "provisionsgutschrift_footer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39223,10 +39585,10 @@ { "Field": "eu_lieferung_vermerk", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39234,10 +39596,10 @@ { "Field": "export_lieferung_vermerk", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39245,10 +39607,10 @@ { "Field": "zahlung_amazon_bestellung_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39256,10 +39618,10 @@ { "Field": "zahlung_billsafe_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39267,10 +39629,10 @@ { "Field": "zahlung_sofortueberweisung_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39278,10 +39640,10 @@ { "Field": "zahlung_secupay_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39289,10 +39651,10 @@ { "Field": "adressefreifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39300,10 +39662,10 @@ { "Field": "adressefreifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39311,10 +39673,10 @@ { "Field": "adressefreifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39322,10 +39684,10 @@ { "Field": "adressefreifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39333,10 +39695,10 @@ { "Field": "adressefreifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39344,10 +39706,10 @@ { "Field": "adressefreifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39355,10 +39717,10 @@ { "Field": "adressefreifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39366,10 +39728,10 @@ { "Field": "adressefreifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39377,10 +39739,10 @@ { "Field": "adressefreifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39388,10 +39750,10 @@ { "Field": "adressefreifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39399,10 +39761,10 @@ { "Field": "zahlung_eckarte_de", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39410,7 +39772,7 @@ { "Field": "devicekey", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -39424,7 +39786,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39435,7 +39797,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39443,10 +39805,10 @@ { "Field": "bcc1", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39454,10 +39816,10 @@ { "Field": "bcc2", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39465,10 +39827,10 @@ { "Field": "firmenfarbe", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39476,10 +39838,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39520,10 +39882,10 @@ { "Field": "email_html_template", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39531,10 +39893,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39542,10 +39904,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39553,10 +39915,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39564,10 +39926,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39575,10 +39937,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39586,10 +39948,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39597,10 +39959,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39608,10 +39970,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39619,10 +39981,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39630,10 +39992,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39641,10 +40003,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39652,10 +40014,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39663,10 +40025,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39674,10 +40036,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39685,10 +40047,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39696,10 +40058,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39707,10 +40069,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39718,10 +40080,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39729,10 +40091,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39740,10 +40102,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39751,10 +40113,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39762,10 +40124,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39773,10 +40135,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39784,10 +40146,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39795,10 +40157,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39806,10 +40168,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39817,10 +40179,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39828,10 +40190,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39839,10 +40201,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39850,10 +40212,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39861,10 +40223,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39872,10 +40234,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39883,10 +40245,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39894,10 +40256,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39905,10 +40267,10 @@ { "Field": "adressefreifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39916,10 +40278,10 @@ { "Field": "adressefreifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39927,10 +40289,10 @@ { "Field": "adressefreifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39938,10 +40300,10 @@ { "Field": "adressefreifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39949,10 +40311,10 @@ { "Field": "adressefreifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39960,10 +40322,10 @@ { "Field": "adressefreifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39971,10 +40333,10 @@ { "Field": "adressefreifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39982,10 +40344,10 @@ { "Field": "adressefreifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39993,10 +40355,10 @@ { "Field": "adressefreifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40004,10 +40366,10 @@ { "Field": "adressefreifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40015,10 +40377,10 @@ { "Field": "proformarechnung_header", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40026,10 +40388,10 @@ { "Field": "proformarechnung_footer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40038,8 +40400,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -40053,7 +40416,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40061,7 +40424,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -40072,7 +40435,7 @@ { "Field": "typ", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -40083,7 +40446,7 @@ { "Field": "typ1", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -40094,7 +40457,7 @@ { "Field": "typ2", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -40105,10 +40468,10 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40116,10 +40479,10 @@ { "Field": "default_value", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40150,8 +40513,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -40165,7 +40529,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40173,10 +40537,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40184,10 +40548,10 @@ { "Field": "kennung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40198,7 +40562,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40206,10 +40570,10 @@ { "Field": "formel", "Type": "varchar(500)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40218,13 +40582,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "kennung", - "Non_unique": "1", - "columns": "kennung" + "columns": [ + "kennung" + ] } ] }, @@ -40238,7 +40604,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40246,7 +40612,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -40257,7 +40623,7 @@ { "Field": "formula", "Type": "varchar(500)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -40268,7 +40634,7 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -40313,8 +40679,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -40328,7 +40695,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40403,8 +40770,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -40418,7 +40786,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40460,18 +40828,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "free_article_id", - "Non_unique": "1", - "columns": "free_article_id" + "columns": [ + "free_article_id" + ] }, { "Key_name": "order_id", - "Non_unique": "1", - "columns": "order_id" + "columns": [ + "order_id" + ] } ] }, @@ -40485,7 +40856,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40493,10 +40864,10 @@ { "Field": "sprache", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40504,10 +40875,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40515,10 +40886,10 @@ { "Field": "text", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40526,10 +40897,10 @@ { "Field": "subjekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40540,7 +40911,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40551,7 +40922,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40560,8 +40931,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -40575,7 +40947,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40583,10 +40955,10 @@ { "Field": "vorlage", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40594,10 +40966,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40605,10 +40977,10 @@ { "Field": "name2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40616,10 +40988,10 @@ { "Field": "name3", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40627,10 +40999,10 @@ { "Field": "telefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40638,10 +41010,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40649,10 +41021,10 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40660,10 +41032,10 @@ { "Field": "plz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40671,10 +41043,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40682,10 +41054,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40693,10 +41065,10 @@ { "Field": "hausnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40704,10 +41076,10 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40715,10 +41087,10 @@ { "Field": "notiz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40738,8 +41110,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -40753,7 +41126,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40761,7 +41134,7 @@ { "Field": "belegnr", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -40772,10 +41145,10 @@ { "Field": "status", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "angelegt", + "Default": "'angelegt'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40783,7 +41156,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -40797,7 +41170,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40816,7 +41189,7 @@ { "Field": "document_type", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -40860,7 +41233,7 @@ { "Field": "storagesort", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -40871,10 +41244,10 @@ { "Field": "document_info", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40883,8 +41256,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -40898,7 +41272,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40928,7 +41302,7 @@ { "Field": "serial", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -40939,7 +41313,7 @@ { "Field": "batch", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -40953,7 +41327,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40995,13 +41369,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "goodspostingdocument_position_id", - "Non_unique": "1", - "columns": "goodspostingdocument_position_id" + "columns": [ + "goodspostingdocument_position_id" + ] } ] }, @@ -41015,7 +41391,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41045,7 +41421,7 @@ { "Field": "reason", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -41056,7 +41432,7 @@ { "Field": "relation_document", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -41156,13 +41532,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "goodspostingdocument_id", - "Non_unique": "1", - "columns": "goodspostingdocument_id" + "columns": [ + "goodspostingdocument_id" + ] } ] }, @@ -41176,7 +41554,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41195,7 +41573,7 @@ { "Field": "message", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -41206,7 +41584,7 @@ { "Field": "created_by", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -41229,13 +41607,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "goodspostingdocument_id", - "Non_unique": "1", - "columns": "goodspostingdocument_id" + "columns": [ + "goodspostingdocument_id" + ] } ] }, @@ -41249,7 +41629,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41268,10 +41648,10 @@ { "Field": "token", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41282,7 +41662,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41291,13 +41671,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "google_account_id", - "Non_unique": "1", - "columns": "google_account_id" + "columns": [ + "google_account_id" + ] } ] }, @@ -41311,7 +41693,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41330,10 +41712,10 @@ { "Field": "refresh_token", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41341,10 +41723,10 @@ { "Field": "identifier", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41353,13 +41735,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "user_id", - "Non_unique": "1", - "columns": "user_id" + "columns": [ + "user_id" + ] } ] }, @@ -41373,7 +41757,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41392,10 +41776,10 @@ { "Field": "varname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41403,10 +41787,10 @@ { "Field": "value", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41415,8 +41799,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -41430,7 +41815,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41449,10 +41834,10 @@ { "Field": "scope", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41461,13 +41846,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "google_account_id", - "Non_unique": "1", - "columns": "google_account_id" + "columns": [ + "google_account_id" + ] } ] }, @@ -41481,7 +41868,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41489,7 +41876,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -41500,10 +41887,10 @@ { "Field": "description", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41511,10 +41898,10 @@ { "Field": "type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41533,10 +41920,10 @@ { "Field": "user", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41544,10 +41931,10 @@ { "Field": "password", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41555,10 +41942,10 @@ { "Field": "redirect_uri", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41566,10 +41953,10 @@ { "Field": "token", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41580,7 +41967,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41588,10 +41975,10 @@ { "Field": "refresh_token", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41602,7 +41989,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41610,7 +41997,7 @@ { "Field": "id_name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -41622,8 +42009,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -41637,7 +42025,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41656,7 +42044,7 @@ { "Field": "foreign_id", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -41692,7 +42080,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41700,10 +42088,10 @@ { "Field": "html_link", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41712,13 +42100,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "event_id", - "Non_unique": "1", - "columns": "event_id" + "columns": [ + "event_id" + ] } ] }, @@ -41732,7 +42122,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41751,7 +42141,7 @@ { "Field": "googleapi_id_name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -41784,10 +42174,10 @@ { "Field": "identifier", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41795,10 +42185,10 @@ { "Field": "refresh_token", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41806,10 +42196,10 @@ { "Field": "access_token", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41820,7 +42210,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41829,8 +42219,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -41844,7 +42235,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41855,7 +42246,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41866,7 +42257,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41874,10 +42265,10 @@ { "Field": "koordinaten", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41888,7 +42279,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41897,8 +42288,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -41912,7 +42304,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41920,10 +42312,10 @@ { "Field": "name", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41931,10 +42323,10 @@ { "Field": "art", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41942,10 +42334,10 @@ { "Field": "kennziffer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41953,10 +42345,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41967,7 +42359,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41978,7 +42370,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41989,7 +42381,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42000,7 +42392,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42011,7 +42403,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42022,7 +42414,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42033,7 +42425,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42044,7 +42436,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42052,10 +42444,10 @@ { "Field": "kundennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42063,10 +42455,10 @@ { "Field": "partnerid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42096,7 +42488,7 @@ { "Field": "dta_dateiname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -42107,7 +42499,7 @@ { "Field": "dta_mail", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -42118,7 +42510,7 @@ { "Field": "dta_mail_betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -42129,10 +42521,10 @@ { "Field": "dta_mail_text", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42140,10 +42532,10 @@ { "Field": "dtavariablen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42165,7 +42557,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42176,7 +42568,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42187,7 +42579,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42198,7 +42590,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42209,7 +42601,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42220,7 +42612,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42231,7 +42623,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42242,7 +42634,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42253,7 +42645,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42264,7 +42656,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42275,7 +42667,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42286,7 +42678,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42297,7 +42689,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42308,7 +42700,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42319,7 +42711,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42330,7 +42722,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42341,7 +42733,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42352,7 +42744,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42363,7 +42755,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42374,7 +42766,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42418,7 +42810,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42440,7 +42832,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42451,7 +42843,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42462,7 +42854,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42473,7 +42865,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42484,7 +42876,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42495,7 +42887,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42503,10 +42895,10 @@ { "Field": "rechnung_name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42514,10 +42906,10 @@ { "Field": "rechnung_strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42525,10 +42917,10 @@ { "Field": "rechnung_ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42536,10 +42928,10 @@ { "Field": "rechnung_plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42547,10 +42939,10 @@ { "Field": "rechnung_abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42558,10 +42950,10 @@ { "Field": "rechnung_land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42569,10 +42961,10 @@ { "Field": "rechnung_email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42583,7 +42975,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42594,7 +42986,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42605,7 +42997,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42613,10 +43005,10 @@ { "Field": "webid", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42627,7 +43019,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42646,7 +43038,7 @@ { "Field": "objektname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -42657,7 +43049,7 @@ { "Field": "objekttyp", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -42668,7 +43060,7 @@ { "Field": "parameter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -42679,7 +43071,7 @@ { "Field": "objektname2", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -42690,7 +43082,7 @@ { "Field": "objekttyp2", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -42701,7 +43093,7 @@ { "Field": "parameter2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -42712,7 +43104,7 @@ { "Field": "objektname3", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -42723,7 +43115,7 @@ { "Field": "objekttyp3", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -42734,7 +43126,7 @@ { "Field": "parameter3", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -42768,8 +43160,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -42783,7 +43176,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -42791,7 +43184,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -42814,8 +43207,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -42829,7 +43223,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -42859,10 +43253,10 @@ { "Field": "parameter1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42870,10 +43264,10 @@ { "Field": "parameter2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42881,10 +43275,10 @@ { "Field": "parameter3", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42895,7 +43289,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42906,7 +43300,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42915,13 +43309,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "gruppe", - "Non_unique": "1", - "columns": "gruppe" + "columns": [ + "gruppe" + ] } ] }, @@ -42935,7 +43331,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -42988,23 +43384,27 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "lieferschein", - "Non_unique": "1", - "columns": "lieferschein" + "columns": [ + "lieferschein" + ] }, { "Key_name": "auftrag", - "Non_unique": "1", - "columns": "auftrag" + "columns": [ + "auftrag" + ] }, { "Key_name": "user", - "Non_unique": "1", - "columns": "user" + "columns": [ + "user" + ] } ] }, @@ -43018,7 +43418,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -43029,7 +43429,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43037,10 +43437,10 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43048,10 +43448,10 @@ { "Field": "anlegeart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43059,10 +43459,10 @@ { "Field": "belegnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43073,7 +43473,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43084,7 +43484,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43092,10 +43492,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43103,10 +43503,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43114,10 +43514,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43125,10 +43525,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43139,7 +43539,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43147,10 +43547,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43158,10 +43558,10 @@ { "Field": "abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43169,10 +43569,10 @@ { "Field": "unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43180,10 +43580,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43191,10 +43591,10 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43202,10 +43602,10 @@ { "Field": "plz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43213,10 +43613,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43224,10 +43624,10 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43235,10 +43635,10 @@ { "Field": "ustid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43249,7 +43649,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43260,7 +43660,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43271,7 +43671,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43282,7 +43682,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43290,10 +43690,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43301,10 +43701,10 @@ { "Field": "telefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43312,10 +43712,10 @@ { "Field": "telefax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43323,10 +43723,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43334,10 +43734,10 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43348,7 +43748,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43356,10 +43756,10 @@ { "Field": "versandart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43370,7 +43770,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43378,10 +43778,10 @@ { "Field": "buchhaltung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43389,10 +43789,10 @@ { "Field": "zahlungsweise", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43400,10 +43800,10 @@ { "Field": "zahlungsstatus", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43436,7 +43836,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43447,7 +43847,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43458,7 +43858,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43469,7 +43869,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43477,10 +43877,10 @@ { "Field": "bank_inhaber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43488,10 +43888,10 @@ { "Field": "bank_institut", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43502,7 +43902,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43513,7 +43913,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43521,10 +43921,10 @@ { "Field": "kreditkarte_typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43532,10 +43932,10 @@ { "Field": "kreditkarte_inhaber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43543,10 +43943,10 @@ { "Field": "kreditkarte_nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43554,10 +43954,10 @@ { "Field": "kreditkarte_pruefnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43568,7 +43968,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43579,7 +43979,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43587,10 +43987,10 @@ { "Field": "paypalaccount", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43601,7 +44001,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43612,7 +44012,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43623,7 +44023,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43631,10 +44031,10 @@ { "Field": "versendet_per", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43642,10 +44042,10 @@ { "Field": "versendet_durch", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43656,7 +44056,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43689,7 +44089,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43697,7 +44097,7 @@ { "Field": "manuell_vorabbezahlt_hinweis", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -43777,7 +44177,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43785,7 +44185,7 @@ { "Field": "aktion", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -43796,7 +44196,7 @@ { "Field": "vertrieb", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -43810,7 +44210,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43821,7 +44221,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43840,10 +44240,10 @@ { "Field": "ihrebestellnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43851,10 +44251,10 @@ { "Field": "anschreiben", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43865,7 +44265,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43887,7 +44287,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43898,7 +44298,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43909,7 +44309,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43920,7 +44320,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43931,7 +44331,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43942,7 +44342,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43953,7 +44353,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44016,10 +44416,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "EUR", + "Default": "'eur'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44030,7 +44430,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44041,7 +44441,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44082,10 +44482,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "firma", + "Default": "'firma'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44096,7 +44496,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44148,7 +44548,7 @@ { "Field": "internebezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -44162,7 +44562,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44170,10 +44570,10 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44181,7 +44581,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -44192,7 +44592,7 @@ { "Field": "gln", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -44203,7 +44603,7 @@ { "Field": "deliverythresholdvatid", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -44217,7 +44617,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44239,7 +44639,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44258,7 +44658,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -44269,10 +44669,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44280,10 +44680,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44291,7 +44691,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -44305,7 +44705,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44335,7 +44735,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -44346,7 +44746,7 @@ { "Field": "kundennummer_buchhaltung", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -44357,7 +44757,7 @@ { "Field": "storage_country", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -44369,43 +44769,51 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "projekt", - "Non_unique": "1", - "columns": "projekt" + "columns": [ + "projekt" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] }, { "Key_name": "vertriebid", - "Non_unique": "1", - "columns": "vertriebid" + "columns": [ + "vertriebid" + ] }, { "Key_name": "status", - "Non_unique": "1", - "columns": "status" + "columns": [ + "status" + ] }, { "Key_name": "datum", - "Non_unique": "1", - "columns": "datum" + "columns": [ + "datum" + ] }, { "Key_name": "belegnr", - "Non_unique": "1", - "columns": "belegnr" + "columns": [ + "belegnr" + ] }, { "Key_name": "versandart", - "Non_unique": "1", - "columns": "versandart" + "columns": [ + "versandart" + ] } ] }, @@ -44419,7 +44827,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -44430,7 +44838,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44441,7 +44849,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44452,7 +44860,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44460,10 +44868,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44471,10 +44879,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44482,10 +44890,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44493,10 +44901,10 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44507,7 +44915,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44526,10 +44934,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44540,7 +44948,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44548,10 +44956,10 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44562,7 +44970,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44570,10 +44978,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44581,10 +44989,10 @@ { "Field": "umsatzsteuer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44592,10 +45000,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44639,7 +45047,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44650,7 +45058,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44661,7 +45069,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44672,7 +45080,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44683,7 +45091,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44694,7 +45102,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44705,7 +45113,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44716,7 +45124,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44724,7 +45132,7 @@ { "Field": "einheit", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -44738,7 +45146,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44746,10 +45154,10 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44757,10 +45165,10 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44768,7 +45176,7 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -44779,10 +45187,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44790,10 +45198,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44801,10 +45209,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44812,10 +45220,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44823,10 +45231,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44834,10 +45242,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44845,10 +45253,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44856,10 +45264,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44867,10 +45275,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44878,10 +45286,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44922,7 +45330,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -44936,7 +45344,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44944,10 +45352,10 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44955,10 +45363,10 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44977,7 +45385,7 @@ { "Field": "einkaufspreiswaehrung", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -45021,7 +45429,7 @@ { "Field": "ekwaehrung", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -45043,10 +45451,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45054,10 +45462,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45065,10 +45473,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45076,10 +45484,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45087,10 +45495,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45098,10 +45506,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45109,10 +45517,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45120,10 +45528,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45131,10 +45539,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45142,10 +45550,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45153,10 +45561,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45164,10 +45572,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45175,10 +45583,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45186,10 +45594,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45197,10 +45605,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45208,10 +45616,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45219,10 +45627,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45230,10 +45638,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45241,10 +45649,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45252,10 +45660,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45263,10 +45671,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45274,10 +45682,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45285,10 +45693,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45296,10 +45704,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45307,10 +45715,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45318,10 +45726,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45329,10 +45737,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45340,10 +45748,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45351,10 +45759,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45362,10 +45770,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45373,7 +45781,7 @@ { "Field": "formelmenge", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -45384,7 +45792,7 @@ { "Field": "formelpreis", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -45409,7 +45817,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45420,7 +45828,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45431,7 +45839,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45442,7 +45850,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45453,7 +45861,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45464,7 +45872,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45497,7 +45905,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45508,7 +45916,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45519,7 +45927,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45530,7 +45938,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45539,18 +45947,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "gutschrift", - "Non_unique": "1", - "columns": "gutschrift" + "columns": [ + "gutschrift" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -45564,7 +45975,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -45575,7 +45986,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45586,7 +45997,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45594,10 +46005,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45605,10 +46016,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45617,13 +46028,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "gutschrift", - "Non_unique": "1", - "columns": "gutschrift" + "columns": [ + "gutschrift" + ] } ] }, @@ -45637,7 +46050,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -45645,7 +46058,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -45656,7 +46069,7 @@ { "Field": "alias", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -45689,7 +46102,7 @@ { "Field": "description", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -45701,18 +46114,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "name", - "Non_unique": "1", - "columns": "name" + "columns": [ + "name" + ] }, { "Key_name": "alias", - "Non_unique": "1", - "columns": "alias" + "columns": [ + "alias" + ] } ] }, @@ -45726,7 +46142,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -45745,7 +46161,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -45768,8 +46184,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -45783,7 +46200,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -45791,7 +46208,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -45802,7 +46219,7 @@ { "Field": "dokumenttyp", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -45813,7 +46230,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -45824,7 +46241,7 @@ { "Field": "funktion", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -45835,7 +46252,7 @@ { "Field": "typ", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -45846,7 +46263,7 @@ { "Field": "block", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -45857,7 +46274,7 @@ { "Field": "blocktyp", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -45880,8 +46297,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -45895,7 +46313,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -45903,7 +46321,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -45926,13 +46344,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "module", - "Non_unique": "1", - "columns": "module" + "columns": [ + "module" + ] } ] }, @@ -45946,7 +46366,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -45965,7 +46385,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -45976,7 +46396,7 @@ { "Field": "funktion", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -46010,13 +46430,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "module", - "Non_unique": "1", - "columns": "module" + "columns": [ + "module" + ] } ] }, @@ -46030,7 +46452,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46038,7 +46460,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -46061,8 +46483,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -46076,7 +46499,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46084,7 +46507,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -46095,7 +46518,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -46106,7 +46529,7 @@ { "Field": "first", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -46117,7 +46540,7 @@ { "Field": "sec", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -46128,7 +46551,7 @@ { "Field": "aftersec", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -46162,8 +46585,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -46177,7 +46601,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46196,7 +46620,7 @@ { "Field": "function", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -46240,7 +46664,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -46263,13 +46687,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "hook", - "Non_unique": "1", - "columns": "hook" + "columns": [ + "hook" + ] } ] }, @@ -46283,7 +46709,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46335,7 +46761,7 @@ { "Field": "filename", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -46346,10 +46772,10 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": "created", + "Default": "'created'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46357,7 +46783,7 @@ { "Field": "message", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -46380,23 +46806,27 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "status", - "Non_unique": "1", - "columns": "status" + "columns": [ + "status" + ] }, { "Key_name": "user_id", - "Non_unique": "1", - "columns": "user_id" + "columns": [ + "user_id" + ] }, { "Key_name": "template_id", - "Non_unique": "1", - "columns": "template_id" + "columns": [ + "template_id" + ] } ] }, @@ -46410,7 +46840,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46418,10 +46848,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46429,10 +46859,10 @@ { "Field": "ziel", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46440,10 +46870,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46451,10 +46881,10 @@ { "Field": "fields", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46465,7 +46895,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46473,10 +46903,10 @@ { "Field": "mitarbeiterletzterimport", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46484,10 +46914,10 @@ { "Field": "importtrennzeichen", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46498,7 +46928,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46506,10 +46936,10 @@ { "Field": "importdatenmaskierung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46517,10 +46947,10 @@ { "Field": "importzeichensatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46539,10 +46969,10 @@ { "Field": "charset", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "UTF8", + "Default": "'utf8'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46551,8 +46981,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -46566,7 +46997,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46577,7 +47008,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46599,7 +47030,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46607,10 +47038,10 @@ { "Field": "tabelle", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46621,7 +47052,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46641,8 +47072,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -46656,7 +47088,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46664,10 +47096,10 @@ { "Field": "sprache", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46675,10 +47107,10 @@ { "Field": "inhalt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46686,10 +47118,10 @@ { "Field": "kurztext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46697,10 +47129,10 @@ { "Field": "html", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46708,10 +47140,10 @@ { "Field": "title", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46719,10 +47151,10 @@ { "Field": "description", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46730,10 +47162,10 @@ { "Field": "keywords", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46741,10 +47173,10 @@ { "Field": "inhaltstyp", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46755,7 +47187,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46766,7 +47198,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46777,7 +47209,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46788,7 +47220,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46796,10 +47228,10 @@ { "Field": "template", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46807,10 +47239,10 @@ { "Field": "finalparse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46818,10 +47250,10 @@ { "Field": "navigation", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46830,8 +47262,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -46845,7 +47278,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46856,7 +47289,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46864,10 +47297,10 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46875,10 +47308,10 @@ { "Field": "belegnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46886,10 +47319,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46897,10 +47330,10 @@ { "Field": "auftrag", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46911,7 +47344,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46919,10 +47352,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46930,10 +47363,10 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46944,7 +47377,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46955,7 +47388,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46963,10 +47396,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46974,10 +47407,10 @@ { "Field": "abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46985,10 +47418,10 @@ { "Field": "unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46996,10 +47429,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47007,10 +47440,10 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47018,10 +47451,10 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47029,10 +47462,10 @@ { "Field": "plz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47040,10 +47473,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47051,10 +47484,10 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47062,10 +47495,10 @@ { "Field": "ustid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47073,10 +47506,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47084,10 +47517,10 @@ { "Field": "telefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47095,10 +47528,10 @@ { "Field": "telefax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47106,10 +47539,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47117,10 +47550,10 @@ { "Field": "kundennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47128,10 +47561,10 @@ { "Field": "versandart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47139,10 +47572,10 @@ { "Field": "versand", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47153,7 +47586,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47164,7 +47597,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47175,7 +47608,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47183,10 +47616,10 @@ { "Field": "versendet_per", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47194,10 +47627,10 @@ { "Field": "versendet_durch", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47208,7 +47641,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47230,7 +47663,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47241,7 +47674,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47294,8 +47727,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -47309,7 +47743,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -47320,7 +47754,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47331,7 +47765,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47342,7 +47776,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47350,10 +47784,10 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47361,10 +47795,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47372,10 +47806,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47383,10 +47817,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47397,7 +47831,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47408,7 +47842,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47416,10 +47850,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47430,7 +47864,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47450,13 +47884,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "label_type_id", - "Non_unique": "0", - "columns": "label_type_id" + "Key_name": "inventur", + "columns": [ + "inventur", + "artikel" + ] } ] }, @@ -47470,7 +47907,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -47481,7 +47918,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47492,7 +47929,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47500,10 +47937,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47511,10 +47948,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47523,13 +47960,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "inventur", - "Non_unique": "1", - "columns": "inventur" + "columns": [ + "inventur" + ] } ] }, @@ -47543,7 +47982,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -47562,7 +48001,7 @@ { "Field": "type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -47573,7 +48012,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -47596,8 +48035,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -47611,7 +48051,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -47622,7 +48062,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47630,10 +48070,10 @@ { "Field": "titel", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47641,10 +48081,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47652,10 +48092,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47666,7 +48106,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47677,7 +48117,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47697,8 +48137,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -47712,7 +48153,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -47720,10 +48161,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "default", + "Default": "'default'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47731,10 +48172,10 @@ { "Field": "farbe", "Type": "varchar(15)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "3300ff", + "Default": "'3300ff'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47743,8 +48184,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -47758,7 +48200,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -47777,10 +48219,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47788,10 +48230,10 @@ { "Field": "beschreibung", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47832,10 +48274,10 @@ { "Field": "color", "Type": "varchar(7)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "#6F93DB", + "Default": "'#6f93db'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47854,10 +48296,10 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47923,7 +48365,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47942,7 +48384,7 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -47953,10 +48395,10 @@ { "Field": "uri", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47964,10 +48406,10 @@ { "Field": "uid", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47976,13 +48418,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -47996,7 +48440,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48004,7 +48448,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -48015,7 +48459,7 @@ { "Field": "farbe", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -48038,8 +48482,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -48053,7 +48498,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48064,7 +48509,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48075,7 +48520,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48086,7 +48531,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48095,18 +48540,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "kalendergruppe", - "Non_unique": "1", - "columns": "kalendergruppe" + "columns": [ + "kalendergruppe" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -48120,7 +48568,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48131,7 +48579,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48139,10 +48587,10 @@ { "Field": "szelle", "Type": "varchar(15)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48153,7 +48601,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48161,10 +48609,10 @@ { "Field": "ndatum", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48175,7 +48623,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48215,7 +48663,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48226,7 +48674,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48237,7 +48685,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48257,18 +48705,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "userid", - "Non_unique": "1", - "columns": "userid" + "columns": [ + "userid" + ] }, { "Key_name": "event", - "Non_unique": "1", - "columns": "event" + "columns": [ + "event" + ] } ] }, @@ -48282,7 +48733,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48293,7 +48744,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48301,10 +48752,10 @@ { "Field": "auswahl", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48315,7 +48766,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48326,7 +48777,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48334,10 +48785,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48348,7 +48799,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48356,10 +48807,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48370,7 +48821,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48381,7 +48832,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48392,7 +48843,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48403,7 +48854,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48554,7 +49005,7 @@ { "Field": "storniert_grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -48565,7 +49016,7 @@ { "Field": "storniert_bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -48576,7 +49027,7 @@ { "Field": "sachkonto", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -48587,10 +49038,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48601,7 +49052,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48610,13 +49061,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "datum", - "Non_unique": "1", - "columns": "datum" + "columns": [ + "datum" + ] } ] }, @@ -48630,7 +49083,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48660,7 +49113,7 @@ { "Field": "beschreibung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -48694,8 +49147,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -48709,7 +49163,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48728,7 +49182,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -48750,7 +49204,7 @@ { "Field": "kommentar", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -48783,7 +49237,7 @@ { "Field": "bezeichnung", "Type": "varchar(40)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -48806,8 +49260,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -48821,7 +49276,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48874,8 +49329,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -48889,7 +49345,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48953,8 +49409,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -48968,7 +49425,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -49098,13 +49555,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -49115,10 +49574,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49126,10 +49585,10 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49140,7 +49599,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49151,7 +49610,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49160,8 +49619,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "name" + "columns": [ + "name" + ] } ] }, @@ -49175,7 +49635,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -49183,10 +49643,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49194,10 +49654,10 @@ { "Field": "kurzbezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49205,10 +49665,10 @@ { "Field": "type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49216,10 +49676,10 @@ { "Field": "erstezeile", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49230,7 +49690,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49238,10 +49698,10 @@ { "Field": "blz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49249,10 +49709,10 @@ { "Field": "konto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49260,10 +49720,10 @@ { "Field": "swift", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49271,10 +49731,10 @@ { "Field": "iban", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49285,7 +49745,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49296,7 +49756,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49304,10 +49764,10 @@ { "Field": "hbcikennung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49315,10 +49775,10 @@ { "Field": "inhaber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49329,7 +49789,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49340,7 +49800,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49351,7 +49811,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49381,10 +49841,10 @@ { "Field": "liveimport", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49392,10 +49852,10 @@ { "Field": "liveimport_passwort", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49406,7 +49866,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49414,10 +49874,10 @@ { "Field": "importtrennzeichen", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49425,10 +49885,10 @@ { "Field": "codierung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49439,7 +49899,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49447,10 +49907,10 @@ { "Field": "importdatenmaskierung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49461,7 +49921,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49469,10 +49929,10 @@ { "Field": "glaeubiger", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49527,7 +49987,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49535,10 +49995,10 @@ { "Field": "importfelddatum", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49546,10 +50006,10 @@ { "Field": "importfelddatumformat", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49557,10 +50017,10 @@ { "Field": "importfelddatumformatausgabe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49568,10 +50028,10 @@ { "Field": "importfeldbetrag", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49579,10 +50039,10 @@ { "Field": "importfeldbetragformat", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49590,10 +50050,10 @@ { "Field": "importfeldbuchungstext", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49601,10 +50061,10 @@ { "Field": "importfeldbuchungstextformat", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49612,10 +50072,10 @@ { "Field": "importfeldwaehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49623,10 +50083,10 @@ { "Field": "importfeldwaehrungformat", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49634,7 +50094,7 @@ { "Field": "importfeldhabensollkennung", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -49645,7 +50105,7 @@ { "Field": "importfeldkennunghaben", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -49656,7 +50116,7 @@ { "Field": "importfeldkennungsoll", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -49678,7 +50138,7 @@ { "Field": "importfeldhaben", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -49689,7 +50149,7 @@ { "Field": "importfeldsoll", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -49745,13 +50205,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "projekt", - "Non_unique": "1", - "columns": "projekt" + "columns": [ + "projekt" + ] } ] }, @@ -49765,7 +50227,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -49776,7 +50238,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49787,7 +50249,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49798,7 +50260,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49806,10 +50268,10 @@ { "Field": "vorgang", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49817,10 +50279,10 @@ { "Field": "originalvorgang", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49831,7 +50293,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49842,7 +50304,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49853,7 +50315,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49864,7 +50326,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49875,7 +50337,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49886,7 +50348,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49894,10 +50356,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49905,10 +50367,10 @@ { "Field": "originalwaehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49919,7 +50381,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49930,7 +50392,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49938,10 +50400,10 @@ { "Field": "buchungstext", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49949,10 +50411,10 @@ { "Field": "gegenkonto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49960,10 +50422,10 @@ { "Field": "belegfeld1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49971,10 +50433,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49985,7 +50447,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49993,10 +50455,10 @@ { "Field": "pruefsumme", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50004,7 +50466,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -50018,7 +50480,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50040,7 +50502,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50048,10 +50510,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50062,7 +50524,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50092,10 +50554,10 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50106,7 +50568,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50114,7 +50576,7 @@ { "Field": "vorauswahltyp", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -50125,7 +50587,7 @@ { "Field": "vorauswahlparameter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -50147,7 +50609,7 @@ { "Field": "klaergrund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -50158,7 +50620,7 @@ { "Field": "bezugtyp", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -50169,7 +50631,7 @@ { "Field": "bezugparameter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -50192,23 +50654,27 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "konto", - "Non_unique": "1", - "columns": "konto" + "columns": [ + "konto" + ] }, { "Key_name": "parent", - "Non_unique": "1", - "columns": "parent" + "columns": [ + "parent" + ] }, { "Key_name": "gegenkonto", - "Non_unique": "1", - "columns": "gegenkonto" + "columns": [ + "gegenkonto" + ] } ] }, @@ -50222,7 +50688,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50233,7 +50699,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50241,10 +50707,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50255,7 +50721,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50266,7 +50732,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50274,10 +50740,10 @@ { "Field": "objekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50288,7 +50754,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50299,7 +50765,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50310,7 +50776,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50321,7 +50787,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50330,18 +50796,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "kontoauszuege", - "Non_unique": "1", - "columns": "kontoauszuege" + "columns": [ + "kontoauszuege" + ] }, { "Key_name": "parameter", - "Non_unique": "1", - "columns": "parameter" + "columns": [ + "parameter" + ] } ] }, @@ -50355,7 +50824,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50366,7 +50835,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50374,10 +50843,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50388,7 +50857,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50399,7 +50868,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50407,10 +50876,10 @@ { "Field": "objekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50421,7 +50890,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50432,7 +50901,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50443,7 +50912,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50454,7 +50923,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50465,7 +50934,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50474,18 +50943,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "kontoauszuege", - "Non_unique": "1", - "columns": "kontoauszuege" + "columns": [ + "kontoauszuege" + ] }, { "Key_name": "parameter", - "Non_unique": "1", - "columns": "parameter" + "columns": [ + "parameter" + ] } ] }, @@ -50499,7 +50971,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50507,7 +50979,7 @@ { "Field": "sachkonto", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -50518,10 +50990,10 @@ { "Field": "beschriftung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50529,10 +51001,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50574,8 +51046,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -50589,7 +51062,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50600,7 +51073,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50611,7 +51084,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50620,8 +51093,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -50635,7 +51109,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50643,10 +51117,10 @@ { "Field": "belegtyp", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50654,10 +51128,10 @@ { "Field": "art", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50665,10 +51139,10 @@ { "Field": "projekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50687,10 +51161,10 @@ { "Field": "empfaenger_email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50698,10 +51172,10 @@ { "Field": "empfaenger_name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50712,7 +51186,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50723,7 +51197,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50754,8 +51228,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -50769,7 +51244,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50777,10 +51252,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50788,10 +51263,10 @@ { "Field": "projekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50799,10 +51274,10 @@ { "Field": "verantwortlicher", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50810,10 +51285,10 @@ { "Field": "logdatei", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50822,8 +51297,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -50837,7 +51313,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50848,7 +51324,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50856,10 +51332,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50867,10 +51343,10 @@ { "Field": "datum", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50878,10 +51354,10 @@ { "Field": "buchungstext", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50889,10 +51365,10 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50901,8 +51377,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -50916,7 +51393,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50924,10 +51401,10 @@ { "Field": "nummer", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50935,10 +51412,10 @@ { "Field": "beschreibung", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50946,10 +51423,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50958,8 +51435,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -50973,7 +51451,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50984,7 +51462,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50992,10 +51470,10 @@ { "Field": "zahlungsweise", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51006,7 +51484,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51017,7 +51495,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51028,7 +51506,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51036,10 +51514,10 @@ { "Field": "versandart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51059,8 +51537,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -51074,7 +51553,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51104,10 +51583,10 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51115,10 +51594,10 @@ { "Field": "selection", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51127,8 +51606,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -51142,7 +51622,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51150,10 +51630,10 @@ { "Field": "group_table", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "UNI", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51161,10 +51641,10 @@ { "Field": "title", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51184,13 +51664,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "group_table", - "Non_unique": "0", - "columns": "group_table" + "columns": [ + "group_table" + ] } ] }, @@ -51204,7 +51686,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51215,7 +51697,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51223,10 +51705,10 @@ { "Field": "reference_table", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51237,7 +51719,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51257,38 +51739,57 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "Key_name": "label_type_id", + "columns": [ + "label_type_id", + "reference_table", + "reference_id" + ] }, { "Key_name": "label_type_id_2", - "Non_unique": "0", - "columns": "label_type_id" + "columns": [ + "label_type_id", + "reference_table", + "reference_id" + ] }, { "Key_name": "label_type_id_3", - "Non_unique": "0", - "columns": "label_type_id" + "columns": [ + "label_type_id", + "reference_table", + "reference_id" + ] }, { "Key_name": "label_type_id_4", - "Non_unique": "0", - "columns": "label_type_id" + "columns": [ + "label_type_id", + "reference_table", + "reference_id" + ] }, { "Key_name": "label_type_id_5", - "Non_unique": "0", - "columns": "label_type_id" + "columns": [ + "label_type_id", + "reference_table", + "reference_id" + ] }, { "Key_name": "label_type_id_6", - "Non_unique": "0", - "columns": "label_type_id" + "columns": [ + "label_type_id", + "reference_table", + "reference_id" + ] } ] }, @@ -51302,7 +51803,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51321,10 +51822,10 @@ { "Field": "type", "Type": "varchar(24)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "UNI", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51332,10 +51833,10 @@ { "Field": "title", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51343,10 +51844,10 @@ { "Field": "hexcolor", "Type": "varchar(7)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "#FFFFFF", + "Default": "'#ffffff'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51377,13 +51878,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "type", - "Non_unique": "0", - "columns": "type" + "columns": [ + "type" + ] } ] }, @@ -51397,7 +51900,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51405,7 +51908,7 @@ { "Field": "iso", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -51416,7 +51919,7 @@ { "Field": "iso3", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -51427,7 +51930,7 @@ { "Field": "num_code", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -51438,7 +51941,7 @@ { "Field": "bezeichnung_de", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -51449,7 +51952,7 @@ { "Field": "bezeichnung_en", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -51472,8 +51975,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -51487,7 +51991,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51495,10 +51999,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51506,10 +52010,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51520,7 +52024,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51531,7 +52035,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51542,7 +52046,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51584,8 +52088,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -51599,7 +52104,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51610,7 +52115,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51621,7 +52126,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51640,10 +52145,10 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51654,7 +52159,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51665,7 +52170,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51673,10 +52178,10 @@ { "Field": "referenz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51684,10 +52189,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51698,7 +52203,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51709,7 +52214,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51731,7 +52236,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51764,7 +52269,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51772,7 +52277,7 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -51817,18 +52322,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -51842,7 +52350,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51850,10 +52358,10 @@ { "Field": "charge", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51864,7 +52372,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51875,7 +52383,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51897,7 +52405,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51908,7 +52416,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51916,10 +52424,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51928,18 +52436,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "lager_platz", - "Non_unique": "1", - "columns": "lager_platz" + "columns": [ + "lager_platz" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -51953,7 +52464,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51964,7 +52475,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51975,7 +52486,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51986,7 +52497,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51997,7 +52508,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52008,7 +52519,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52019,7 +52530,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52030,7 +52541,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52041,7 +52552,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52050,8 +52561,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -52065,7 +52577,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52076,7 +52588,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52087,7 +52599,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52098,7 +52610,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52120,7 +52632,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52131,7 +52643,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52139,10 +52651,10 @@ { "Field": "charge", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52150,10 +52662,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52162,18 +52674,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "lager_platz", - "Non_unique": "1", - "columns": "lager_platz" + "columns": [ + "lager_platz" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -52187,7 +52702,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52198,7 +52713,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52206,10 +52721,10 @@ { "Field": "kurzbezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52217,10 +52732,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52231,7 +52746,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52242,7 +52757,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52253,7 +52768,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52360,7 +52875,7 @@ { "Field": "abckategorie", "Type": "varchar(1)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -52371,7 +52886,7 @@ { "Field": "regalart", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -52405,13 +52920,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "lager", - "Non_unique": "1", - "columns": "lager" + "columns": [ + "lager" + ] } ] }, @@ -52425,7 +52942,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52436,7 +52953,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52447,7 +52964,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52466,10 +52983,10 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52477,10 +52994,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52491,7 +53008,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52502,7 +53019,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52513,7 +53030,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52535,7 +53052,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52555,18 +53072,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] }, { "Key_name": "lager_platz", - "Non_unique": "1", - "columns": "lager_platz" + "columns": [ + "lager_platz" + ] } ] }, @@ -52580,7 +53100,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52591,7 +53111,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52732,8 +53252,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -52747,7 +53268,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52758,7 +53279,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52769,7 +53290,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52788,10 +53309,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52799,10 +53320,10 @@ { "Field": "objekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52810,10 +53331,10 @@ { "Field": "parameter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52824,7 +53345,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52835,7 +53356,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52843,10 +53364,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52857,7 +53378,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52910,18 +53431,22 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "Key_name": "adresse", + "columns": [ + "adresse", + "artikel" + ] }, { "Key_name": "objekt", - "Non_unique": "1", - "columns": "objekt" + "columns": [ + "objekt" + ] } ] }, @@ -52935,7 +53460,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52946,7 +53471,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52957,7 +53482,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52968,7 +53493,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52976,10 +53501,10 @@ { "Field": "seriennummer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52987,10 +53512,10 @@ { "Field": "charge", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53001,7 +53526,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53009,10 +53534,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53021,8 +53546,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -53036,7 +53562,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53080,7 +53606,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53091,7 +53617,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53111,13 +53637,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "matrix_article_id", - "Non_unique": "0", - "columns": "matrix_article_id" + "Key_name": "artikel", + "columns": [ + "artikel", + "lager_platz" + ] } ] }, @@ -53131,7 +53660,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53184,13 +53713,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -53204,7 +53735,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53215,7 +53746,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53292,7 +53823,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53325,7 +53856,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53333,7 +53864,7 @@ { "Field": "waehrungkalk", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -53344,7 +53875,7 @@ { "Field": "waehrungletzt", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -53378,18 +53909,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] }, { "Key_name": "datum", - "Non_unique": "1", - "columns": "datum" + "columns": [ + "datum" + ] } ] }, @@ -53403,7 +53937,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53411,10 +53945,10 @@ { "Field": "module", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53455,10 +53989,10 @@ { "Field": "language", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53466,10 +54000,10 @@ { "Field": "country", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53510,7 +54044,7 @@ { "Field": "filename", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -53522,8 +54056,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -53537,7 +54072,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53545,10 +54080,10 @@ { "Field": "object", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53590,8 +54125,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -53605,7 +54141,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53613,7 +54149,7 @@ { "Field": "name", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -53624,7 +54160,7 @@ { "Field": "typ", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -53638,7 +54174,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53646,7 +54182,7 @@ { "Field": "format", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -53657,7 +54193,7 @@ { "Field": "kategorie", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -53680,8 +54216,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -53695,7 +54232,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53714,7 +54251,7 @@ { "Field": "name", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -53725,7 +54262,7 @@ { "Field": "beschreibung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -53736,7 +54273,7 @@ { "Field": "typ", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -53747,7 +54284,7 @@ { "Field": "position_typ", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -53813,7 +54350,7 @@ { "Field": "schrift_art", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -53846,7 +54383,7 @@ { "Field": "schrift_farbe", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -53857,7 +54394,7 @@ { "Field": "schrift_align", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -53868,7 +54405,7 @@ { "Field": "hintergrund_farbe", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -53879,7 +54416,7 @@ { "Field": "rahmen", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -53890,7 +54427,7 @@ { "Field": "rahmen_farbe", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -53912,10 +54449,10 @@ { "Field": "inhalt_deutsch", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53923,10 +54460,10 @@ { "Field": "inhalt_englisch", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53937,7 +54474,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53948,7 +54485,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53989,7 +54526,7 @@ { "Field": "bild_deutsch_typ", "Type": "varchar(5)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -54000,7 +54537,7 @@ { "Field": "bild_englisch_typ", "Type": "varchar(5)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -54045,13 +54582,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "layoutvorlage", - "Non_unique": "1", - "columns": "layoutvorlage" + "columns": [ + "layoutvorlage" + ] } ] }, @@ -54065,7 +54604,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -54073,10 +54612,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54084,10 +54623,10 @@ { "Field": "sprache", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54095,10 +54634,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54106,10 +54645,10 @@ { "Field": "abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54117,10 +54656,10 @@ { "Field": "unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54128,10 +54667,10 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54139,10 +54678,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54150,10 +54689,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54161,10 +54700,10 @@ { "Field": "plz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54172,10 +54711,10 @@ { "Field": "telefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54183,10 +54722,10 @@ { "Field": "telefax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54194,10 +54733,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54205,10 +54744,10 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54216,10 +54755,10 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54227,10 +54766,10 @@ { "Field": "steuer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54238,10 +54777,10 @@ { "Field": "adresse", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54260,10 +54799,10 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54282,10 +54821,10 @@ { "Field": "interne_bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54293,10 +54832,10 @@ { "Field": "hinweis", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54304,7 +54843,7 @@ { "Field": "gln", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -54315,7 +54854,7 @@ { "Field": "ustid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -54326,10 +54865,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54337,7 +54876,7 @@ { "Field": "ust_befreit", "Type": "varchar(1)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -54349,13 +54888,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -54369,7 +54910,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -54380,7 +54921,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54388,10 +54929,10 @@ { "Field": "kundennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54399,10 +54940,10 @@ { "Field": "zahlungsweise", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54413,7 +54954,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54424,7 +54965,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54435,7 +54976,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54443,10 +54984,10 @@ { "Field": "versandart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54466,8 +55007,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -54481,7 +55023,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -54489,10 +55031,10 @@ { "Field": "lieferbedingungen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54500,10 +55042,10 @@ { "Field": "kennzeichen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54512,8 +55054,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -54527,7 +55070,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -54538,7 +55081,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54546,10 +55089,10 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54557,10 +55100,10 @@ { "Field": "lieferscheinart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54568,10 +55111,10 @@ { "Field": "belegnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54579,10 +55122,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54590,10 +55133,10 @@ { "Field": "auftrag", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54604,7 +55147,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54612,10 +55155,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54623,10 +55166,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54637,7 +55180,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54645,10 +55188,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54656,10 +55199,10 @@ { "Field": "abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54667,10 +55210,10 @@ { "Field": "unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54678,10 +55221,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54689,10 +55232,10 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54700,10 +55243,10 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54711,10 +55254,10 @@ { "Field": "plz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54722,10 +55265,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54733,10 +55276,10 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54744,10 +55287,10 @@ { "Field": "ustid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54755,10 +55298,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54766,10 +55309,10 @@ { "Field": "telefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54777,10 +55320,10 @@ { "Field": "telefax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54788,10 +55331,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54799,10 +55342,10 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54810,10 +55353,10 @@ { "Field": "versandart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54821,10 +55364,10 @@ { "Field": "versand", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54835,7 +55378,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54846,7 +55389,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54857,7 +55400,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54865,10 +55408,10 @@ { "Field": "versendet_per", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54876,10 +55419,10 @@ { "Field": "versendet_durch", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54890,7 +55433,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54912,7 +55455,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54920,7 +55463,7 @@ { "Field": "vertrieb", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -54934,7 +55477,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54942,10 +55485,10 @@ { "Field": "ihrebestellnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54953,10 +55496,10 @@ { "Field": "anschreiben", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54967,7 +55510,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54997,10 +55540,10 @@ { "Field": "lieferantenretoureinfo", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55052,10 +55595,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "firma", + "Default": "'firma'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55063,10 +55606,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55077,7 +55620,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55140,7 +55683,7 @@ { "Field": "internebezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -55154,7 +55697,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55173,7 +55716,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -55184,7 +55727,7 @@ { "Field": "bundesland", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -55195,7 +55738,7 @@ { "Field": "gln", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -55220,7 +55763,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55242,7 +55785,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55261,7 +55804,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -55272,10 +55815,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55283,10 +55826,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55294,7 +55837,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -55327,7 +55870,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -55372,53 +55915,63 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "projekt", - "Non_unique": "1", - "columns": "projekt" + "columns": [ + "projekt" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] }, { "Key_name": "auftragid", - "Non_unique": "1", - "columns": "auftragid" + "columns": [ + "auftragid" + ] }, { "Key_name": "land", - "Non_unique": "1", - "columns": "land" + "columns": [ + "land" + ] }, { "Key_name": "status", - "Non_unique": "1", - "columns": "status" + "columns": [ + "status" + ] }, { "Key_name": "datum", - "Non_unique": "1", - "columns": "datum" + "columns": [ + "datum" + ] }, { "Key_name": "belegnr", - "Non_unique": "1", - "columns": "belegnr" + "columns": [ + "belegnr" + ] }, { "Key_name": "keinerechnung", - "Non_unique": "1", - "columns": "keinerechnung" + "columns": [ + "keinerechnung" + ] }, { "Key_name": "versandart", - "Non_unique": "1", - "columns": "versandart" + "columns": [ + "versandart" + ] } ] }, @@ -55432,7 +55985,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -55443,7 +55996,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55454,7 +56007,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55465,7 +56018,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55473,10 +56026,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55484,10 +56037,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55495,10 +56048,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55506,10 +56059,10 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55517,10 +56070,10 @@ { "Field": "seriennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55531,7 +56084,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55542,7 +56095,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55550,10 +56103,10 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55564,7 +56117,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55572,10 +56125,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55583,10 +56136,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55597,7 +56150,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55608,7 +56161,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55638,7 +56191,7 @@ { "Field": "einheit", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -55649,10 +56202,10 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55660,10 +56213,10 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55671,7 +56224,7 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -55682,10 +56235,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55693,10 +56246,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55704,10 +56257,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55715,10 +56268,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55726,10 +56279,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55737,10 +56290,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55748,10 +56301,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55759,10 +56312,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55770,10 +56323,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55781,10 +56334,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55825,7 +56378,7 @@ { "Field": "lagertext", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -55858,10 +56411,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55869,10 +56422,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55880,10 +56433,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55891,10 +56444,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55902,10 +56455,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55913,10 +56466,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55924,10 +56477,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55935,10 +56488,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55946,10 +56499,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55957,10 +56510,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55968,10 +56521,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55979,10 +56532,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55990,10 +56543,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56001,10 +56554,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56012,10 +56565,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56023,10 +56576,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56034,10 +56587,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56045,10 +56598,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56056,10 +56609,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56067,10 +56620,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56078,10 +56631,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56089,10 +56642,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56100,10 +56653,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56111,10 +56664,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56122,10 +56675,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56133,10 +56686,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56144,10 +56697,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56155,10 +56708,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56166,10 +56719,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56177,10 +56730,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56210,7 +56763,7 @@ { "Field": "zollwaehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -56243,7 +56796,7 @@ { "Field": "nve", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -56254,7 +56807,7 @@ { "Field": "packstueck", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -56299,23 +56852,27 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "lieferschein", - "Non_unique": "1", - "columns": "lieferschein" + "columns": [ + "lieferschein" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] }, { "Key_name": "auftrag_position_id", - "Non_unique": "1", - "columns": "auftrag_position_id" + "columns": [ + "auftrag_position_id" + ] } ] }, @@ -56329,7 +56886,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -56340,7 +56897,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56351,7 +56908,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56359,10 +56916,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56370,10 +56927,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56382,13 +56939,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "lieferschein", - "Non_unique": "1", - "columns": "lieferschein" + "columns": [ + "lieferschein" + ] } ] }, @@ -56402,7 +56961,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -56410,10 +56969,10 @@ { "Field": "ursprungsland", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56421,10 +56980,10 @@ { "Field": "empfaengerland", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56443,10 +57002,10 @@ { "Field": "ustid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56457,7 +57016,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56468,7 +57027,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56479,7 +57038,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56490,7 +57049,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56501,7 +57060,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56512,7 +57071,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56523,7 +57082,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56534,7 +57093,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56575,10 +57134,10 @@ { "Field": "jahr", "Type": "varchar(4)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56598,13 +57157,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "empfaengerland", - "Non_unique": "1", - "columns": "empfaengerland" + "columns": [ + "empfaengerland" + ] } ] }, @@ -56618,7 +57179,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -56637,10 +57198,10 @@ { "Field": "empfaengerland", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56651,7 +57212,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56659,10 +57220,10 @@ { "Field": "bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56682,18 +57243,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "empfaengerland", - "Non_unique": "1", - "columns": "empfaengerland" + "columns": [ + "empfaengerland" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -56707,7 +57271,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -56751,7 +57315,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56760,8 +57324,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -56775,7 +57340,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -56783,10 +57348,10 @@ { "Field": "rule", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56794,10 +57359,10 @@ { "Field": "replacewith", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56805,10 +57370,10 @@ { "Field": "active", "Type": "varchar(1)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "1", + "Default": "'1'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56817,8 +57382,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -56832,7 +57398,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -56843,7 +57409,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56851,10 +57417,10 @@ { "Field": "level", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56862,10 +57428,10 @@ { "Field": "message", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56873,10 +57439,10 @@ { "Field": "class", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56884,10 +57450,10 @@ { "Field": "method", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56898,7 +57464,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56906,10 +57472,10 @@ { "Field": "origin_type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56917,10 +57483,10 @@ { "Field": "origin_detail", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56928,10 +57494,10 @@ { "Field": "dump", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56940,8 +57506,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -56955,7 +57522,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -56963,10 +57530,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56974,10 +57541,10 @@ { "Field": "befehl", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56985,10 +57552,10 @@ { "Field": "statement", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56999,7 +57566,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57010,7 +57577,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57019,8 +57586,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -57034,7 +57602,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57042,10 +57610,10 @@ { "Field": "meldung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57053,10 +57621,10 @@ { "Field": "dump", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57064,7 +57632,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -57075,7 +57643,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -57086,7 +57654,7 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -57097,7 +57665,7 @@ { "Field": "funktionsname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -57111,7 +57679,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57120,8 +57688,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -57135,7 +57704,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57146,7 +57715,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57154,7 +57723,7 @@ { "Field": "magento2_extended_mapping_name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -57165,7 +57734,7 @@ { "Field": "magento2_extended_mapping_type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -57176,7 +57745,7 @@ { "Field": "magento2_extended_mapping_parameter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -57221,13 +57790,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shopexport_id", - "Non_unique": "1", - "columns": "shopexport_id" + "columns": [ + "shopexport_id" + ] } ] }, @@ -57241,7 +57812,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57249,7 +57820,7 @@ { "Field": "subject", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -57263,7 +57834,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57271,7 +57842,7 @@ { "Field": "from", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -57282,7 +57853,7 @@ { "Field": "to", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -57293,10 +57864,10 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57318,7 +57889,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57327,8 +57898,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -57342,7 +57914,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57350,7 +57922,7 @@ { "Field": "bezeichnung", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -57364,7 +57936,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57375,7 +57947,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57417,8 +57989,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -57432,7 +58005,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57440,7 +58013,7 @@ { "Field": "doctype", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -57465,7 +58038,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57474,8 +58047,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -57489,7 +58063,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57497,7 +58071,7 @@ { "Field": "module", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -57508,7 +58082,7 @@ { "Field": "action", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -57519,7 +58093,7 @@ { "Field": "field_id", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -57530,7 +58104,7 @@ { "Field": "error_message", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -57541,7 +58115,7 @@ { "Field": "type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -57585,7 +58159,7 @@ { "Field": "comparator", "Type": "varchar(15)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -57596,7 +58170,7 @@ { "Field": "compareto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -57608,18 +58182,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "module", - "Non_unique": "1", - "columns": "module" + "columns": [ + "module" + ] }, { "Key_name": "action", - "Non_unique": "1", - "columns": "action" + "columns": [ + "action" + ] } ] }, @@ -57633,7 +58210,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57644,7 +58221,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57652,7 +58229,7 @@ { "Field": "feld", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -57663,10 +58240,10 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57674,10 +58251,10 @@ { "Field": "subjekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57685,10 +58262,10 @@ { "Field": "objekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57697,8 +58274,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -57712,7 +58290,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57723,7 +58301,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57731,10 +58309,10 @@ { "Field": "language_from", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57742,10 +58320,10 @@ { "Field": "name_from", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57753,10 +58331,10 @@ { "Field": "name_external_from", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57764,10 +58342,10 @@ { "Field": "language_to", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57775,10 +58353,10 @@ { "Field": "name_to", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57786,10 +58364,10 @@ { "Field": "name_external_to", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57797,10 +58375,10 @@ { "Field": "articlenumber_suffix_from", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57808,10 +58386,10 @@ { "Field": "articlenumber_suffix_to", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57822,7 +58400,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57831,8 +58409,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -57846,7 +58425,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57854,10 +58433,10 @@ { "Field": "language_from", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57865,10 +58444,10 @@ { "Field": "name_from", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57876,10 +58455,10 @@ { "Field": "name_external_from", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57887,10 +58466,10 @@ { "Field": "language_to", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57898,10 +58477,10 @@ { "Field": "name_to", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57909,10 +58488,10 @@ { "Field": "name_external_to", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57923,7 +58502,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57943,8 +58522,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -57958,7 +58538,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57988,7 +58568,7 @@ { "Field": "article_number", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -57999,7 +58579,7 @@ { "Field": "hash", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58010,7 +58590,7 @@ { "Field": "dimension1", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58032,7 +58612,7 @@ { "Field": "dimension2", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58054,7 +58634,7 @@ { "Field": "dimension3", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58076,7 +58656,7 @@ { "Field": "dimension4", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58098,7 +58678,7 @@ { "Field": "dimension5", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58120,7 +58700,7 @@ { "Field": "dimension6", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58142,7 +58722,7 @@ { "Field": "dimension7", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58164,7 +58744,7 @@ { "Field": "dimension8", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58186,7 +58766,7 @@ { "Field": "dimension9", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58208,7 +58788,7 @@ { "Field": "dimension10", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58230,7 +58810,7 @@ { "Field": "dimension11", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58252,7 +58832,7 @@ { "Field": "dimension12", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58274,7 +58854,7 @@ { "Field": "dimension13", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58296,7 +58876,7 @@ { "Field": "dimension14", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58318,7 +58898,7 @@ { "Field": "dimension15", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58340,7 +58920,7 @@ { "Field": "dimension16", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58362,7 +58942,7 @@ { "Field": "dimension17", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58384,7 +58964,7 @@ { "Field": "dimension18", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58406,7 +58986,7 @@ { "Field": "dimension19", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58428,7 +59008,7 @@ { "Field": "dimension20", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58451,13 +59031,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "module", - "Non_unique": "0", - "columns": "module" + "Key_name": "matrix_article_id", + "columns": [ + "matrix_article_id", + "hash" + ] } ] }, @@ -58471,7 +59054,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -58513,13 +59096,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "matrix_article_id", - "Non_unique": "0", - "columns": "matrix_article_id" + "columns": [ + "matrix_article_id" + ] } ] }, @@ -58533,7 +59118,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -58552,7 +59137,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58563,7 +59148,7 @@ { "Field": "name_ext", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58585,7 +59170,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58619,8 +59204,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -58634,7 +59220,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -58664,7 +59250,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58675,7 +59261,7 @@ { "Field": "name_ext", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58697,7 +59283,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58764,13 +59350,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -58784,7 +59372,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -58814,7 +59402,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58825,7 +59413,7 @@ { "Field": "name_ext", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58858,7 +59446,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58869,7 +59457,7 @@ { "Field": "artikelnummer", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58880,7 +59468,7 @@ { "Field": "articlenumber_suffix", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58892,8 +59480,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -58907,7 +59496,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -58948,7 +59537,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -58959,7 +59548,7 @@ { "Field": "name_ext", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -59003,7 +59592,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -59014,7 +59603,7 @@ { "Field": "artikelnummer", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -59025,7 +59614,7 @@ { "Field": "articlenumber_suffix", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -59037,13 +59626,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "gruppe", - "Non_unique": "1", - "columns": "gruppe" + "columns": [ + "gruppe" + ] } ] }, @@ -59057,7 +59648,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59088,18 +59679,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "option_id", - "Non_unique": "1", - "columns": "option_id" + "columns": [ + "option_id" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -59113,7 +59707,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59144,8 +59738,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -59159,7 +59754,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59203,7 +59798,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59211,10 +59806,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59225,7 +59820,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59266,7 +59861,7 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -59299,7 +59894,7 @@ { "Field": "charge", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -59333,18 +59928,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "doctypeid", - "Non_unique": "1", - "columns": "doctypeid" + "columns": [ + "doctypeid" + ] }, { "Key_name": "doctype", - "Non_unique": "1", - "columns": "doctype" + "columns": [ + "doctype" + ] } ] }, @@ -59358,7 +59956,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59377,7 +59975,7 @@ { "Field": "kuerzel", "Type": "varchar(50)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -59391,7 +59989,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59402,7 +60000,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59424,7 +60022,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59435,7 +60033,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59476,7 +60074,7 @@ { "Field": "buchungsart", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -59499,8 +60097,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -59514,7 +60113,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59533,7 +60132,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -59632,10 +60231,10 @@ { "Field": "rundenkommen", "Type": "varchar(48)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "nicht_runden", + "Default": "'nicht_runden'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59643,10 +60242,10 @@ { "Field": "rundengehen", "Type": "varchar(48)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "nicht_runden", + "Default": "'nicht_runden'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59864,8 +60463,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -59879,7 +60479,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59901,7 +60501,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59975,7 +60575,7 @@ { "Field": "kuerzel", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -59986,7 +60586,7 @@ { "Field": "kommentar", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -60000,7 +60600,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60011,7 +60611,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60019,10 +60619,10 @@ { "Field": "rundenkommen", "Type": "varchar(48)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60030,10 +60630,10 @@ { "Field": "rundengehen", "Type": "varchar(48)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60044,7 +60644,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60055,7 +60655,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60066,7 +60666,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60077,7 +60677,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60088,7 +60688,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60099,7 +60699,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60110,7 +60710,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60121,7 +60721,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60132,7 +60732,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60143,7 +60743,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60176,7 +60776,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60184,7 +60784,7 @@ { "Field": "vacation_request_token", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -60195,7 +60795,7 @@ { "Field": "internal_comment", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -60207,18 +60807,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] }, { "Key_name": "datum", - "Non_unique": "1", - "columns": "datum" + "columns": [ + "datum" + ] } ] }, @@ -60232,7 +60835,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -60243,7 +60846,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60254,7 +60857,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60265,7 +60868,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60307,8 +60910,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -60322,7 +60926,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -60355,7 +60959,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60366,7 +60970,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60377,7 +60981,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60385,10 +60989,10 @@ { "Field": "mlmabrechnung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60396,10 +61000,10 @@ { "Field": "alteposition", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60407,10 +61011,10 @@ { "Field": "neueposition", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60418,10 +61022,10 @@ { "Field": "erreichteposition", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60440,10 +61044,10 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "EUR", + "Default": "'eur'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60473,10 +61077,10 @@ { "Field": "rechnung_name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60484,10 +61088,10 @@ { "Field": "rechnung_strasse", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60495,10 +61099,10 @@ { "Field": "rechnung_ort", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60506,10 +61110,10 @@ { "Field": "rechnung_plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60517,10 +61121,10 @@ { "Field": "rechnung_land", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60528,10 +61132,10 @@ { "Field": "steuernummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60572,7 +61176,7 @@ { "Field": "bezahlt_bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -60586,7 +61190,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60594,7 +61198,7 @@ { "Field": "bezahlt_status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -60606,8 +61210,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -60621,7 +61226,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -60651,7 +61256,7 @@ { "Field": "meldung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -60663,8 +61268,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -60678,7 +61284,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -60709,8 +61315,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -60724,7 +61331,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -60743,7 +61350,7 @@ { "Field": "positionierung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -60757,7 +61364,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60768,7 +61375,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60810,8 +61417,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -60825,7 +61433,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -60855,7 +61463,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -60866,10 +61474,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60880,7 +61488,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60933,8 +61541,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -60948,7 +61557,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -60956,7 +61565,7 @@ { "Field": "module", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -60967,7 +61576,7 @@ { "Field": "action", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -60979,13 +61588,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "created_date", - "Non_unique": "0", - "columns": "created_date" + "Key_name": "module", + "columns": [ + "module", + "action" + ] } ] }, @@ -60999,7 +61611,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61007,10 +61619,10 @@ { "Field": "module", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61018,10 +61630,10 @@ { "Field": "action", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61040,7 +61652,7 @@ { "Field": "salt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -61063,8 +61675,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -61078,7 +61691,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61086,7 +61699,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -61097,7 +61710,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -61111,7 +61724,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61131,13 +61744,17 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "user_id", - "Non_unique": "0", - "columns": "user_id" + "Key_name": "created_date", + "columns": [ + "created_date", + "module", + "action" + ] } ] }, @@ -61151,7 +61768,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61159,7 +61776,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -61170,7 +61787,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -61214,7 +61831,7 @@ { "Field": "uid", "Type": "varchar(40)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -61228,7 +61845,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61239,7 +61856,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61248,13 +61865,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "created_at", - "Non_unique": "0", - "columns": "created_at" + "Key_name": "user_id", + "columns": [ + "user_id", + "uid", + "module", + "action", + "document_id", + "visible", + "start_date" + ] } ] }, @@ -61268,7 +61893,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61276,7 +61901,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -61299,8 +61924,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -61314,7 +61940,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61322,7 +61948,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -61333,7 +61959,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -61344,7 +61970,7 @@ { "Field": "first", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -61355,7 +61981,7 @@ { "Field": "sec", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -61389,8 +62015,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -61404,7 +62031,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61412,10 +62039,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61424,8 +62051,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -61436,10 +62064,10 @@ { "Field": "checksum", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61447,10 +62075,10 @@ { "Field": "comment", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61468,7 +62096,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61487,10 +62115,10 @@ { "Field": "type", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "default", + "Default": "'default'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61498,7 +62126,7 @@ { "Field": "title", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -61509,10 +62137,10 @@ { "Field": "message", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61520,10 +62148,10 @@ { "Field": "tags", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61531,10 +62159,10 @@ { "Field": "options_json", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61565,13 +62193,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "user_id", - "Non_unique": "1", - "columns": "user_id" + "columns": [ + "user_id" + ] } ] }, @@ -61585,7 +62215,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61593,7 +62223,7 @@ { "Field": "object_type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -61604,7 +62234,7 @@ { "Field": "object_parameter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -61615,7 +62245,7 @@ { "Field": "event_type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -61629,7 +62259,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61649,13 +62279,18 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "paymentaccount_id", - "Non_unique": "1", - "columns": "paymentaccount_id" + "Key_name": "created_at", + "columns": [ + "created_at", + "object_type", + "object_parameter", + "event_type" + ] } ] }, @@ -61669,7 +62304,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61688,7 +62323,7 @@ { "Field": "objekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -61732,7 +62367,7 @@ { "Field": "kommentar", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -61743,7 +62378,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -61766,23 +62401,27 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "lager_platz", - "Non_unique": "1", - "columns": "lager_platz" + "columns": [ + "lager_platz" + ] }, { "Key_name": "parameter", - "Non_unique": "1", - "columns": "parameter" + "columns": [ + "parameter" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -61796,7 +62435,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61804,7 +62443,7 @@ { "Field": "objekt", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -61826,7 +62465,7 @@ { "Field": "action_long", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -61837,10 +62476,10 @@ { "Field": "meldung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61848,7 +62487,7 @@ { "Field": "bearbeiter", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -61862,7 +62501,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61871,8 +62510,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -61886,7 +62526,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61897,7 +62537,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61905,10 +62545,10 @@ { "Field": "titel", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61916,10 +62556,10 @@ { "Field": "href", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61927,10 +62567,10 @@ { "Field": "beschriftung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61938,10 +62578,10 @@ { "Field": "linkremove", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61961,13 +62601,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -61981,7 +62623,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62000,10 +62642,10 @@ { "Field": "cart_original", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62011,10 +62653,10 @@ { "Field": "cart_transfer", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62022,10 +62664,10 @@ { "Field": "template", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62033,7 +62675,7 @@ { "Field": "extid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "MUL", "Default": "", @@ -62044,7 +62686,7 @@ { "Field": "internet", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -62055,7 +62697,7 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -62078,18 +62720,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id" + ] }, { "Key_name": "extid", - "Non_unique": "1", - "columns": "extid" + "columns": [ + "extid" + ] } ] }, @@ -62103,7 +62748,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62122,7 +62767,7 @@ { "Field": "command", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -62133,10 +62778,10 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": "inactive", + "Default": "'inactive'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62178,8 +62823,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -62193,7 +62839,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62224,8 +62870,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -62239,7 +62886,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62250,7 +62897,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62261,7 +62908,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62272,7 +62919,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62280,10 +62927,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62294,7 +62941,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62302,10 +62949,10 @@ { "Field": "gewicht", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62313,10 +62960,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62327,7 +62974,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62335,10 +62982,10 @@ { "Field": "vorlage", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62346,10 +62993,10 @@ { "Field": "vorlageid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62357,10 +63004,10 @@ { "Field": "zahlung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62371,7 +63018,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62379,10 +63026,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62393,7 +63040,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62404,7 +63051,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62415,7 +63062,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62426,7 +63073,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62434,10 +63081,10 @@ { "Field": "bearbeiter_distribution", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62445,10 +63092,10 @@ { "Field": "postgrund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62467,10 +63114,10 @@ { "Field": "renr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62478,10 +63125,10 @@ { "Field": "lsnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62490,8 +63137,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -62505,7 +63153,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62513,10 +63161,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62527,7 +63175,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62538,7 +63186,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62549,7 +63197,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62560,7 +63208,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62571,7 +63219,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62579,10 +63227,10 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62593,7 +63241,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62601,10 +63249,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62615,7 +63263,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62646,8 +63294,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -62661,7 +63310,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62672,7 +63321,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62680,10 +63329,10 @@ { "Field": "ref", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62691,10 +63340,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62705,7 +63354,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62716,7 +63365,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62727,7 +63376,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62738,7 +63387,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62749,7 +63398,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62769,8 +63418,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -62784,7 +63434,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62795,7 +63445,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62806,7 +63456,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62817,7 +63467,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62828,7 +63478,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62839,7 +63489,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62850,7 +63500,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62859,8 +63509,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -62874,7 +63525,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62904,7 +63555,7 @@ { "Field": "reason", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -62916,8 +63567,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -62931,7 +63583,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62950,7 +63602,7 @@ { "Field": "payment_status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -62994,7 +63646,7 @@ { "Field": "currency", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63005,7 +63657,7 @@ { "Field": "payment_reason", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63016,10 +63668,10 @@ { "Field": "payment_json", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63049,7 +63701,7 @@ { "Field": "payment_info", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63072,28 +63724,33 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "returnorder_id", - "Non_unique": "1", - "columns": "returnorder_id" + "columns": [ + "returnorder_id" + ] }, { "Key_name": "liabilitiy_id", - "Non_unique": "1", - "columns": "liability_id" + "columns": [ + "liability_id" + ] }, { "Key_name": "payment_transaction_group_id", - "Non_unique": "1", - "columns": "payment_transaction_group_id" + "columns": [ + "payment_transaction_group_id" + ] }, { "Key_name": "payment_account_id", - "Non_unique": "1", - "columns": "payment_account_id" + "columns": [ + "payment_account_id" + ] } ] }, @@ -63107,7 +63764,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63137,7 +63794,7 @@ { "Field": "comment", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63148,7 +63805,7 @@ { "Field": "created_by", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63160,13 +63817,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "payment_account_id", - "Non_unique": "1", - "columns": "payment_account_id" + "columns": [ + "payment_account_id" + ] } ] }, @@ -63180,7 +63839,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63265,7 +63924,7 @@ { "Field": "currency", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63276,7 +63935,7 @@ { "Field": "payment_reason", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63287,7 +63946,7 @@ { "Field": "payment_info", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63299,18 +63958,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "user_id", - "Non_unique": "1", - "columns": "user_id" + "columns": [ + "user_id" + ] }, { "Key_name": "returnorder_id", - "Non_unique": "1", - "columns": "returnorder_id" + "columns": [ + "returnorder_id" + ] } ] }, @@ -63324,7 +63986,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63346,7 +64008,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63357,7 +64019,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63376,10 +64038,10 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "created", + "Default": "'created'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63388,13 +64050,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "paymentaccount_id", - "Non_unique": "0", - "columns": "paymentaccount_id" + "columns": [ + "paymentaccount_id", + "status" + ] } ] }, @@ -63408,7 +64073,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63439,13 +64104,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "pinwand", - "Non_unique": "1", - "columns": "pinwand" + "Key_name": "paymentaccount_id", + "columns": [ + "paymentaccount_id", + "hour" + ] } ] }, @@ -63459,7 +64127,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63478,7 +64146,7 @@ { "Field": "locked_by_type", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63514,7 +64182,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63523,13 +64191,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "paymentaccount_id", - "Non_unique": "1", - "columns": "paymentaccount_id" + "columns": [ + "paymentaccount_id" + ] } ] }, @@ -63543,7 +64213,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63554,7 +64224,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63562,7 +64232,7 @@ { "Field": "checksum", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63584,7 +64254,7 @@ { "Field": "table_name", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63595,7 +64265,7 @@ { "Field": "doctype", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63606,7 +64276,7 @@ { "Field": "doctypeorig", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63617,7 +64287,7 @@ { "Field": "dateiname", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63628,7 +64298,7 @@ { "Field": "bearbeiter", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63639,7 +64309,7 @@ { "Field": "belegnummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63683,7 +64353,7 @@ { "Field": "parameter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63695,18 +64365,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "table_id", - "Non_unique": "1", - "columns": "table_id" + "columns": [ + "table_id" + ] }, { "Key_name": "schreibschutz", - "Non_unique": "1", - "columns": "schreibschutz" + "columns": [ + "schreibschutz" + ] } ] }, @@ -63720,7 +64393,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63731,7 +64404,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63739,7 +64412,7 @@ { "Field": "checksum", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63761,7 +64434,7 @@ { "Field": "table_name", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63772,7 +64445,7 @@ { "Field": "bearbeiter", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63806,8 +64479,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -63821,7 +64495,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63832,7 +64506,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63840,10 +64514,10 @@ { "Field": "granting_user_name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63854,7 +64528,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63862,10 +64536,10 @@ { "Field": "receiving_user_name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63873,10 +64547,10 @@ { "Field": "module", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63884,10 +64558,10 @@ { "Field": "action", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63898,7 +64572,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63918,8 +64592,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -63933,7 +64608,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63941,7 +64616,7 @@ { "Field": "name", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -63964,8 +64639,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -63979,7 +64655,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64010,13 +64686,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "shopid", - "Non_unique": "1", - "columns": "shopid" + "Key_name": "pinwand", + "columns": [ + "pinwand", + "user" + ] } ] }, @@ -64030,7 +64709,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64041,7 +64720,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64063,7 +64742,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64074,7 +64753,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64083,8 +64762,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -64098,7 +64778,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64128,7 +64808,7 @@ { "Field": "kassenkennung", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -64151,8 +64831,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -64166,7 +64847,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64243,7 +64924,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64251,7 +64932,7 @@ { "Field": "zahlungsweise", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -64273,7 +64954,7 @@ { "Field": "lager", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -64298,7 +64979,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64309,7 +64990,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64339,7 +65020,7 @@ { "Field": "tip_konto", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -64351,13 +65032,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "projekt", - "Non_unique": "1", - "columns": "projekt" + "columns": [ + "projekt" + ] } ] }, @@ -64371,7 +65054,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64382,7 +65065,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64393,7 +65076,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64478,10 +65161,10 @@ { "Field": "umsatzzaehler_aes", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64489,10 +65172,10 @@ { "Field": "signatur", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64500,10 +65183,10 @@ { "Field": "jwscompact", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64511,7 +65194,7 @@ { "Field": "belegart", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -64525,7 +65208,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64534,8 +65217,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -64549,7 +65233,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64568,10 +65252,10 @@ { "Field": "kassierer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64579,7 +65263,7 @@ { "Field": "sesssionbezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -64590,10 +65274,10 @@ { "Field": "data", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64604,7 +65288,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64624,8 +65308,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -64639,7 +65324,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64683,7 +65368,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64691,7 +65376,7 @@ { "Field": "nummer", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -64703,18 +65388,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "datum", - "Non_unique": "1", - "columns": "datum" + "columns": [ + "datum" + ] }, { "Key_name": "projekt", - "Non_unique": "1", - "columns": "projekt" + "columns": [ + "projekt" + ] } ] }, @@ -64728,7 +65416,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64945,10 +65633,10 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64956,7 +65644,7 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -64979,8 +65667,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -64994,7 +65683,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -65005,7 +65694,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65013,10 +65702,10 @@ { "Field": "projekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65024,10 +65713,10 @@ { "Field": "belegnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65035,7 +65724,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -65046,10 +65735,10 @@ { "Field": "auftrag", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65060,7 +65749,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65068,10 +65757,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65079,7 +65768,7 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -65093,7 +65782,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65104,7 +65793,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65112,10 +65801,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65123,10 +65812,10 @@ { "Field": "abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65134,10 +65823,10 @@ { "Field": "unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65145,10 +65834,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65156,10 +65845,10 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65167,10 +65856,10 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65178,10 +65867,10 @@ { "Field": "plz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65189,10 +65878,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65200,10 +65889,10 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65211,10 +65900,10 @@ { "Field": "ustid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65222,10 +65911,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65233,10 +65922,10 @@ { "Field": "telefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65244,10 +65933,10 @@ { "Field": "telefax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65255,10 +65944,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65266,10 +65955,10 @@ { "Field": "lieferantennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65277,10 +65966,10 @@ { "Field": "versandart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65288,10 +65977,10 @@ { "Field": "versand", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65302,7 +65991,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65313,7 +66002,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65324,7 +66013,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65332,10 +66021,10 @@ { "Field": "versendet_per", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65343,10 +66032,10 @@ { "Field": "versendet_durch", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65357,7 +66046,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65379,7 +66068,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65387,10 +66076,10 @@ { "Field": "reservierart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65398,10 +66087,10 @@ { "Field": "auslagerart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": "sammel", + "Default": "'sammel'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65423,7 +66112,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65434,7 +66123,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65453,7 +66142,7 @@ { "Field": "internebezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -65464,10 +66153,10 @@ { "Field": "anschreiben", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65478,7 +66167,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65552,10 +66241,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "EUR", + "Default": "'eur'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65563,10 +66252,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "firma", + "Default": "'firma'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65577,7 +66266,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65596,10 +66285,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65607,7 +66296,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -65618,10 +66307,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65629,10 +66318,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65640,7 +66329,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -65651,7 +66340,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -65674,8 +66363,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -65689,7 +66379,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -65700,7 +66390,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65711,7 +66401,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65722,7 +66412,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65730,10 +66420,10 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65741,10 +66431,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65752,10 +66442,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65763,10 +66453,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65777,7 +66467,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65788,7 +66478,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65796,10 +66486,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65810,7 +66500,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65821,7 +66511,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65829,7 +66519,7 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -65840,7 +66530,7 @@ { "Field": "einheit", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -65854,7 +66544,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65884,10 +66574,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65895,10 +66585,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65906,10 +66596,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65917,10 +66607,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65928,10 +66618,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65939,10 +66629,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65950,10 +66640,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65961,10 +66651,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65972,10 +66662,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65983,10 +66673,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65994,10 +66684,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66005,10 +66695,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66016,10 +66706,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66027,10 +66717,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66038,10 +66728,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66049,10 +66739,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66060,10 +66750,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66071,10 +66761,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66082,10 +66772,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66093,10 +66783,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66104,10 +66794,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66115,10 +66805,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66126,10 +66816,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66137,10 +66827,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66148,10 +66838,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66159,10 +66849,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66170,10 +66860,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66181,10 +66871,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66192,10 +66882,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66203,10 +66893,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66214,10 +66904,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66225,10 +66915,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66236,10 +66926,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66247,10 +66937,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66258,10 +66948,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66269,10 +66959,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66280,10 +66970,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66291,10 +66981,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66302,10 +66992,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66313,10 +67003,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66325,13 +67015,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "preisanfrage", - "Non_unique": "1", - "columns": "preisanfrage" + "columns": [ + "preisanfrage" + ] } ] }, @@ -66345,7 +67037,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -66356,7 +67048,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66367,7 +67059,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66375,10 +67067,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66386,10 +67078,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66398,8 +67090,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -66413,7 +67106,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -66424,7 +67117,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66435,7 +67128,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66446,7 +67139,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66455,8 +67148,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -66470,7 +67164,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -66481,7 +67175,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66492,7 +67186,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66503,7 +67197,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66512,8 +67206,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -66527,7 +67222,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -66538,7 +67233,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66546,10 +67241,10 @@ { "Field": "art", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66557,10 +67252,10 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66568,10 +67263,10 @@ { "Field": "belegnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66579,10 +67274,10 @@ { "Field": "internet", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66590,10 +67285,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66601,10 +67296,10 @@ { "Field": "angebot", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66612,10 +67307,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66623,10 +67318,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66634,10 +67329,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "angelegt", + "Default": "'angelegt'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66648,7 +67343,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66656,10 +67351,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66667,10 +67362,10 @@ { "Field": "abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66678,10 +67373,10 @@ { "Field": "unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66689,10 +67384,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66700,10 +67395,10 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66711,10 +67406,10 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66722,10 +67417,10 @@ { "Field": "plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66733,10 +67428,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66744,10 +67439,10 @@ { "Field": "land", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66755,10 +67450,10 @@ { "Field": "ustid", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66769,7 +67464,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66780,7 +67475,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66788,10 +67483,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66799,10 +67494,10 @@ { "Field": "telefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66810,10 +67505,10 @@ { "Field": "telefax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66821,10 +67516,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66832,10 +67527,10 @@ { "Field": "kundennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66843,10 +67538,10 @@ { "Field": "versandart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66854,10 +67549,10 @@ { "Field": "vertrieb", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66865,10 +67560,10 @@ { "Field": "zahlungsweise", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66879,7 +67574,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66890,7 +67585,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66901,7 +67596,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66909,10 +67604,10 @@ { "Field": "bank_inhaber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66920,10 +67615,10 @@ { "Field": "bank_institut", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66931,10 +67626,10 @@ { "Field": "bank_blz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66942,10 +67637,10 @@ { "Field": "bank_konto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66953,10 +67648,10 @@ { "Field": "kreditkarte_typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66964,10 +67659,10 @@ { "Field": "kreditkarte_inhaber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66975,10 +67670,10 @@ { "Field": "kreditkarte_nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66986,10 +67681,10 @@ { "Field": "kreditkarte_pruefnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66997,10 +67692,10 @@ { "Field": "kreditkarte_monat", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67008,10 +67703,10 @@ { "Field": "kreditkarte_jahr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67022,7 +67717,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67033,7 +67728,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67044,7 +67739,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67052,10 +67747,10 @@ { "Field": "versendet_per", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67063,10 +67758,10 @@ { "Field": "versendet_durch", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67077,7 +67772,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67088,7 +67783,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67099,7 +67794,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67110,7 +67805,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67118,10 +67813,10 @@ { "Field": "liefername", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67129,10 +67824,10 @@ { "Field": "lieferabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67140,10 +67835,10 @@ { "Field": "lieferunterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67151,10 +67846,10 @@ { "Field": "lieferland", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67162,10 +67857,10 @@ { "Field": "lieferstrasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67173,10 +67868,10 @@ { "Field": "lieferort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67184,10 +67879,10 @@ { "Field": "lieferplz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67195,10 +67890,10 @@ { "Field": "lieferadresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67206,10 +67901,10 @@ { "Field": "lieferansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67217,10 +67912,10 @@ { "Field": "packstation_inhaber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67228,10 +67923,10 @@ { "Field": "packstation_station", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67239,10 +67934,10 @@ { "Field": "packstation_ident", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67250,10 +67945,10 @@ { "Field": "packstation_plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67261,10 +67956,10 @@ { "Field": "packstation_ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67275,7 +67970,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67286,7 +67981,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67297,7 +67992,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67319,7 +68014,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67330,7 +68025,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67341,7 +68036,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67352,7 +68047,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67363,7 +68058,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67374,7 +68069,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67385,7 +68080,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67396,7 +68091,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67407,7 +68102,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67418,7 +68113,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67429,7 +68124,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67440,7 +68135,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67451,7 +68146,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67462,7 +68157,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67473,7 +68168,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67484,7 +68179,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67492,10 +68187,10 @@ { "Field": "stornogrund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67503,10 +68198,10 @@ { "Field": "stornosonstiges", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67514,10 +68209,10 @@ { "Field": "stornorueckzahlung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67536,10 +68231,10 @@ { "Field": "stornobankinhaber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67547,10 +68242,10 @@ { "Field": "stornobankkonto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67558,10 +68253,10 @@ { "Field": "stornobankblz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67569,10 +68264,10 @@ { "Field": "stornobankbank", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67583,7 +68278,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67591,10 +68286,10 @@ { "Field": "stornogutschriftbeleg", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67605,7 +68300,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67613,10 +68308,10 @@ { "Field": "stornomanuellebearbeitung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67624,10 +68319,10 @@ { "Field": "stornokommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67635,10 +68330,10 @@ { "Field": "stornobezahlt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67649,7 +68344,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67657,10 +68352,10 @@ { "Field": "stornobezahltvon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67671,7 +68366,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67679,10 +68374,10 @@ { "Field": "stornorueckzahlungper", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67693,7 +68388,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67704,7 +68399,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67715,7 +68410,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67723,10 +68418,10 @@ { "Field": "kennen", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67745,10 +68440,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67759,7 +68454,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67767,10 +68462,10 @@ { "Field": "anschreiben", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67781,7 +68476,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67855,10 +68550,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "EUR", + "Default": "'eur'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67899,10 +68594,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "firma", + "Default": "'firma'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67910,10 +68605,10 @@ { "Field": "reservierart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67921,10 +68616,10 @@ { "Field": "auslagerart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": "sammel", + "Default": "'sammel'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67946,7 +68641,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67957,7 +68652,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67976,7 +68671,7 @@ { "Field": "charge", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -68001,7 +68696,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68012,7 +68707,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68023,7 +68718,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68042,7 +68737,7 @@ { "Field": "internebezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -68111,7 +68806,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68141,10 +68836,10 @@ { "Field": "abschlussbemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68199,7 +68894,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68219,18 +68914,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] }, { "Key_name": "auftragid", - "Non_unique": "1", - "columns": "auftragid" + "columns": [ + "auftragid" + ] } ] }, @@ -68244,7 +68942,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -68285,7 +68983,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -68296,10 +68994,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68310,7 +69008,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68329,7 +69027,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -68373,7 +69071,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -68385,13 +69083,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "produktion", - "Non_unique": "1", - "columns": "produktion" + "columns": [ + "produktion" + ] } ] }, @@ -68405,7 +69105,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -68438,7 +69138,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68449,7 +69149,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68468,10 +69168,10 @@ { "Field": "batch", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68479,7 +69179,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -68502,18 +69202,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "produktion_arbeitsanweisung", - "Non_unique": "1", - "columns": "produktion_arbeitsanweisung" + "columns": [ + "produktion_arbeitsanweisung" + ] }, { "Key_name": "produktion", - "Non_unique": "1", - "columns": "produktion" + "columns": [ + "produktion" + ] } ] }, @@ -68527,7 +69230,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -68568,7 +69271,7 @@ { "Field": "baugruppennr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -68579,7 +69282,7 @@ { "Field": "seriennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -68590,7 +69293,7 @@ { "Field": "pruefer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -68601,7 +69304,7 @@ { "Field": "kommentar", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -68668,13 +69371,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "produktion", - "Non_unique": "1", - "columns": "produktion" + "columns": [ + "produktion" + ] } ] }, @@ -68688,7 +69393,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -68729,7 +69434,7 @@ { "Field": "chargennummer", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -68743,7 +69448,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68751,7 +69456,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -68774,23 +69479,27 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "produktion", - "Non_unique": "1", - "columns": "produktion" + "columns": [ + "produktion" + ] }, { "Key_name": "baugruppe", - "Non_unique": "1", - "columns": "baugruppe" + "columns": [ + "baugruppe" + ] }, { "Key_name": "charge", - "Non_unique": "1", - "columns": "charge" + "columns": [ + "charge" + ] } ] }, @@ -68804,7 +69513,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -68834,7 +69543,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -68845,10 +69554,10 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68856,7 +69565,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -68867,7 +69576,7 @@ { "Field": "chargennummer", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -68881,7 +69590,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68889,7 +69598,7 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -68923,18 +69632,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "produktion", - "Non_unique": "1", - "columns": "produktion" + "columns": [ + "produktion" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] } ] }, @@ -68948,7 +69660,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -69023,13 +69735,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "produktion", - "Non_unique": "1", - "columns": "produktion" + "columns": [ + "produktion" + ] } ] }, @@ -69043,7 +69757,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -69084,7 +69798,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -69095,10 +69809,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69109,7 +69823,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69117,10 +69831,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "frage", + "Default": "'frage'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69128,7 +69842,7 @@ { "Field": "widget", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -69139,7 +69853,7 @@ { "Field": "klassen", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -69150,7 +69864,7 @@ { "Field": "beschreibung_textfeld1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -69161,7 +69875,7 @@ { "Field": "beschreibung_textfeld2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -69194,10 +69908,10 @@ { "Field": "config", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69238,7 +69952,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -69250,13 +69964,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "produktion", - "Non_unique": "1", - "columns": "produktion" + "columns": [ + "produktion" + ] } ] }, @@ -69270,7 +69986,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -69300,10 +70016,10 @@ { "Field": "textfeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69311,10 +70027,10 @@ { "Field": "textfeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69322,10 +70038,10 @@ { "Field": "eingabejson", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69333,10 +70049,10 @@ { "Field": "eingabehtml", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69344,10 +70060,10 @@ { "Field": "ausgabejson", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69355,10 +70071,10 @@ { "Field": "ausgabehtml", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69388,7 +70104,7 @@ { "Field": "klasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -69399,10 +70115,10 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69410,7 +70126,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -69444,13 +70160,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "funktionsprotokoll", - "Non_unique": "1", - "columns": "funktionsprotokoll" + "columns": [ + "funktionsprotokoll" + ] } ] }, @@ -69464,7 +70182,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -69475,7 +70193,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69486,7 +70204,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69497,7 +70215,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69505,10 +70223,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69516,10 +70234,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69527,10 +70245,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69538,10 +70256,10 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69552,7 +70270,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69563,7 +70281,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69571,10 +70289,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69585,7 +70303,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69593,10 +70311,10 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69607,7 +70325,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69615,10 +70333,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69626,10 +70344,10 @@ { "Field": "umsatzsteuer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69637,10 +70355,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69651,7 +70369,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69662,7 +70380,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69673,7 +70391,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69684,7 +70402,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69706,7 +70424,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69736,7 +70454,7 @@ { "Field": "einheit", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -69750,7 +70468,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69758,10 +70476,10 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69769,10 +70487,10 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69791,10 +70509,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69802,10 +70520,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69813,10 +70531,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69824,10 +70542,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69835,10 +70553,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69846,10 +70564,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69857,10 +70575,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69868,10 +70586,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69879,10 +70597,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69890,10 +70608,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69901,10 +70619,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69912,10 +70630,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69923,10 +70641,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69934,10 +70652,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69945,10 +70663,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69956,10 +70674,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69967,10 +70685,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69978,10 +70696,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69989,10 +70707,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70000,10 +70718,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70011,10 +70729,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70022,10 +70740,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70033,10 +70751,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70044,10 +70762,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70055,10 +70773,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70066,10 +70784,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70077,10 +70795,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70088,10 +70806,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70099,10 +70817,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70110,10 +70828,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70121,10 +70839,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70132,10 +70850,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70143,10 +70861,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70154,10 +70872,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70165,10 +70883,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70176,10 +70894,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70187,10 +70905,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70198,10 +70916,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70209,10 +70927,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70220,10 +70938,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70254,23 +70972,27 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "produktion", - "Non_unique": "1", - "columns": "produktion" + "columns": [ + "produktion" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] }, { "Key_name": "explodiert_parent", - "Non_unique": "1", - "columns": "explodiert_parent" + "columns": [ + "explodiert_parent" + ] } ] }, @@ -70284,7 +71006,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -70306,7 +71028,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70314,10 +71036,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70325,10 +71047,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70337,13 +71059,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "produktion", - "Non_unique": "1", - "columns": "produktion" + "columns": [ + "produktion" + ] } ] }, @@ -70357,7 +71081,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -70398,7 +71122,7 @@ { "Field": "seriennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -70409,7 +71133,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -70442,7 +71166,7 @@ { "Field": "kommentar", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -70454,13 +71178,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "baugruppe", - "Non_unique": "1", - "columns": "baugruppe" + "columns": [ + "baugruppe" + ] } ] }, @@ -70474,7 +71200,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -70485,7 +71211,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70496,7 +71222,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70504,10 +71230,10 @@ { "Field": "bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70515,10 +71241,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70529,7 +71255,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70537,10 +71263,10 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70551,7 +71277,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70559,10 +71285,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70570,10 +71296,10 @@ { "Field": "produzent", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70584,7 +71310,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70604,8 +71330,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -70619,7 +71346,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -70630,7 +71357,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70641,7 +71368,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70649,10 +71376,10 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70660,10 +71387,10 @@ { "Field": "anlegeart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70671,10 +71398,10 @@ { "Field": "belegnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70682,10 +71409,10 @@ { "Field": "auftrag", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70696,7 +71423,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70704,10 +71431,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70715,10 +71442,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70726,10 +71453,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70737,10 +71464,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70751,7 +71478,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70759,10 +71486,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70770,10 +71497,10 @@ { "Field": "abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70781,10 +71508,10 @@ { "Field": "unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70792,10 +71519,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70803,10 +71530,10 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70814,10 +71541,10 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70825,10 +71552,10 @@ { "Field": "plz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70836,10 +71563,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70847,10 +71574,10 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70858,10 +71585,10 @@ { "Field": "ustid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70872,7 +71599,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70883,7 +71610,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70894,7 +71621,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70905,7 +71632,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70913,10 +71640,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70924,10 +71651,10 @@ { "Field": "telefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70935,10 +71662,10 @@ { "Field": "telefax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70946,10 +71673,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70957,10 +71684,10 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70971,7 +71698,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70979,10 +71706,10 @@ { "Field": "versandart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70993,7 +71720,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71001,10 +71728,10 @@ { "Field": "buchhaltung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71012,10 +71739,10 @@ { "Field": "zahlungsweise", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71023,10 +71750,10 @@ { "Field": "zahlungsstatus", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71059,7 +71786,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71070,7 +71797,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71081,7 +71808,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71092,7 +71819,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71103,7 +71830,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71114,7 +71841,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71125,7 +71852,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71133,10 +71860,10 @@ { "Field": "versendet_per", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71144,10 +71871,10 @@ { "Field": "versendet_durch", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71158,7 +71885,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71166,10 +71893,10 @@ { "Field": "mahnwesen", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71180,7 +71907,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71191,7 +71918,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71199,10 +71926,10 @@ { "Field": "mahnwesen_internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71213,7 +71940,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71224,7 +71951,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71246,7 +71973,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71411,7 +72138,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71419,7 +72146,7 @@ { "Field": "aktion", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -71430,7 +72157,7 @@ { "Field": "vertrieb", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -71444,7 +72171,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71455,7 +72182,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71477,7 +72204,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71488,7 +72215,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71499,7 +72226,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71507,10 +72234,10 @@ { "Field": "ihrebestellnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71518,10 +72245,10 @@ { "Field": "anschreiben", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71532,7 +72259,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71554,7 +72281,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71565,7 +72292,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71576,7 +72303,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71587,7 +72314,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71598,7 +72325,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71609,7 +72336,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71620,7 +72347,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71631,7 +72358,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71642,7 +72369,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71653,7 +72380,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71716,10 +72443,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "EUR", + "Default": "'eur'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71730,7 +72457,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71771,10 +72498,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "firma", + "Default": "'firma'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71785,7 +72512,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71815,10 +72542,10 @@ { "Field": "systemfreitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71848,7 +72575,7 @@ { "Field": "internebezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -71862,7 +72589,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71884,7 +72611,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71892,7 +72619,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -71906,7 +72633,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71914,10 +72641,10 @@ { "Field": "titel", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71928,7 +72655,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71936,10 +72663,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71947,10 +72674,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71958,10 +72685,10 @@ { "Field": "liefername", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71969,10 +72696,10 @@ { "Field": "lieferabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71980,10 +72707,10 @@ { "Field": "lieferunterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71991,10 +72718,10 @@ { "Field": "lieferland", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72002,10 +72729,10 @@ { "Field": "lieferstrasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72013,10 +72740,10 @@ { "Field": "lieferort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72024,10 +72751,10 @@ { "Field": "lieferplz", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72035,10 +72762,10 @@ { "Field": "lieferadresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72046,10 +72773,10 @@ { "Field": "lieferansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72057,10 +72784,10 @@ { "Field": "liefertitel", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72068,10 +72795,10 @@ { "Field": "liefergln", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72082,7 +72809,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72101,10 +72828,10 @@ { "Field": "verzollinformationen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72112,7 +72839,7 @@ { "Field": "verzollungname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -72123,7 +72850,7 @@ { "Field": "verzollungabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -72134,7 +72861,7 @@ { "Field": "verzollungunterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -72145,7 +72872,7 @@ { "Field": "verzollungland", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -72156,7 +72883,7 @@ { "Field": "verzollungstrasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -72167,7 +72894,7 @@ { "Field": "verzollungort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -72178,7 +72905,7 @@ { "Field": "verzollungplz", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -72189,7 +72916,7 @@ { "Field": "verzollungadresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -72200,7 +72927,7 @@ { "Field": "verzollungansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -72211,7 +72938,7 @@ { "Field": "verzollungtitel", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -72222,7 +72949,7 @@ { "Field": "formelmenge", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -72244,7 +72971,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -72255,7 +72982,7 @@ { "Field": "lieferbundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -72267,8 +72994,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -72282,7 +73010,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -72335,8 +73063,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -72350,7 +73079,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -72361,7 +73090,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72372,7 +73101,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72383,7 +73112,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72391,10 +73120,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72402,10 +73131,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72413,10 +73142,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72424,10 +73153,10 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72438,7 +73167,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72457,10 +73186,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72471,7 +73200,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72479,10 +73208,10 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72493,7 +73222,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72501,10 +73230,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72512,10 +73241,10 @@ { "Field": "umsatzsteuer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72523,10 +73252,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72559,7 +73288,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72570,7 +73299,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72581,7 +73310,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72592,7 +73321,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72603,7 +73332,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72614,7 +73343,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72625,7 +73354,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72636,7 +73365,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72647,7 +73376,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72658,7 +73387,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72669,7 +73398,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72680,7 +73409,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72688,7 +73417,7 @@ { "Field": "einheit", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -72702,7 +73431,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72710,10 +73439,10 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72721,10 +73450,10 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72732,7 +73461,7 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -72776,10 +73505,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72787,10 +73516,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72798,10 +73527,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72809,10 +73538,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72820,10 +73549,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72831,10 +73560,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72842,10 +73571,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72853,10 +73582,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72864,10 +73593,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72875,10 +73604,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72889,7 +73618,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72897,10 +73626,10 @@ { "Field": "steuertext", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72908,10 +73637,10 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72919,7 +73648,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -72941,10 +73670,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72952,10 +73681,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72963,10 +73692,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72974,10 +73703,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72985,10 +73714,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72996,10 +73725,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73007,10 +73736,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73018,10 +73747,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73029,10 +73758,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73040,10 +73769,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73051,10 +73780,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73062,10 +73791,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73073,10 +73802,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73084,10 +73813,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73095,10 +73824,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73106,10 +73835,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73117,10 +73846,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73128,10 +73857,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73139,10 +73868,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73150,10 +73879,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73161,10 +73890,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73172,10 +73901,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73183,10 +73912,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73194,10 +73923,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73205,10 +73934,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73216,10 +73945,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73227,10 +73956,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73238,10 +73967,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73249,10 +73978,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73260,10 +73989,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73271,7 +74000,7 @@ { "Field": "formelmenge", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -73282,7 +74011,7 @@ { "Field": "formelpreis", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -73296,7 +74025,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73305,13 +74034,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "proformarechnung", - "Non_unique": "1", - "columns": "proformarechnung" + "columns": [ + "proformarechnung" + ] } ] }, @@ -73325,7 +74056,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -73336,7 +74067,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73347,7 +74078,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73355,10 +74086,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73366,10 +74097,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73378,8 +74109,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -73393,7 +74125,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -73401,10 +74133,10 @@ { "Field": "name", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73412,10 +74144,10 @@ { "Field": "abkuerzung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73423,10 +74155,10 @@ { "Field": "verantwortlicher", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73434,10 +74166,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73445,10 +74177,10 @@ { "Field": "sonstiges", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73456,10 +74188,10 @@ { "Field": "aktiv", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73467,10 +74199,10 @@ { "Field": "farbe", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73481,7 +74213,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73492,7 +74224,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73503,7 +74235,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73514,7 +74246,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73522,10 +74254,10 @@ { "Field": "checkname", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73536,7 +74268,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73544,10 +74276,10 @@ { "Field": "zahlungsmailbedinungen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73558,7 +74290,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73569,7 +74301,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73580,7 +74312,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73591,7 +74323,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73602,7 +74334,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73613,7 +74345,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73624,7 +74356,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73635,7 +74367,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73646,7 +74378,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73654,10 +74386,10 @@ { "Field": "logdatei", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73720,10 +74452,10 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "EUR", + "Default": "'eur'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73789,7 +74521,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73800,7 +74532,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73833,7 +74565,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73841,10 +74573,10 @@ { "Field": "dpdkundennr", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73852,10 +74584,10 @@ { "Field": "dhlkundennr", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73863,10 +74595,10 @@ { "Field": "dhlformat", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73874,10 +74606,10 @@ { "Field": "dpdformat", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73888,7 +74620,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73896,10 +74628,10 @@ { "Field": "dpdpfad", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73907,18 +74639,18 @@ { "Field": "dhlpfad", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "upspfad", - "Type": "text", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(64)", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "'0'", @@ -73973,10 +74705,10 @@ { "Field": "intraship_user", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73984,10 +74716,10 @@ { "Field": "intraship_signature", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73995,10 +74727,10 @@ { "Field": "intraship_ekp", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74006,10 +74738,10 @@ { "Field": "intraship_api_user", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74017,10 +74749,10 @@ { "Field": "intraship_api_password", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74028,10 +74760,10 @@ { "Field": "intraship_company_name", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74039,10 +74771,10 @@ { "Field": "intraship_street_name", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74050,10 +74782,10 @@ { "Field": "intraship_street_number", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74061,7 +74793,7 @@ { "Field": "intraship_zip", "Type": "varchar(12)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -74071,8 +74803,8 @@ }, { "Field": "intraship_country", - "Type": "text", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(128)", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "'germany'", @@ -74083,10 +74815,10 @@ { "Field": "intraship_city", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74094,10 +74826,10 @@ { "Field": "intraship_email", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74105,10 +74837,10 @@ { "Field": "intraship_phone", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74116,10 +74848,10 @@ { "Field": "intraship_internet", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74127,10 +74859,10 @@ { "Field": "intraship_contact_person", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74138,10 +74870,10 @@ { "Field": "intraship_account_owner", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74149,10 +74881,10 @@ { "Field": "intraship_account_number", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74160,10 +74892,10 @@ { "Field": "intraship_bank_code", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74171,10 +74903,10 @@ { "Field": "intraship_bank_name", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74182,10 +74914,10 @@ { "Field": "intraship_iban", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74193,10 +74925,10 @@ { "Field": "intraship_bic", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74248,10 +74980,10 @@ { "Field": "intraship_PackageType", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "PL", + "Default": "'pl'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74259,10 +74991,10 @@ { "Field": "abrechnungsart", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74270,10 +75002,10 @@ { "Field": "kommissionierverfahren", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74284,7 +75016,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74295,7 +75027,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74303,10 +75035,10 @@ { "Field": "absendeadresse", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74314,10 +75046,10 @@ { "Field": "absendename", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74325,10 +75057,10 @@ { "Field": "absendesignatur", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74339,7 +75071,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74350,7 +75082,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74361,7 +75093,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74372,7 +75104,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74383,7 +75115,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74394,7 +75126,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74405,7 +75137,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74416,7 +75148,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74482,7 +75214,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74490,10 +75222,10 @@ { "Field": "next_angebot", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74501,10 +75233,10 @@ { "Field": "next_auftrag", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74512,10 +75244,10 @@ { "Field": "next_rechnung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74523,10 +75255,10 @@ { "Field": "next_lieferschein", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74534,10 +75266,10 @@ { "Field": "next_arbeitsnachweis", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74545,10 +75277,10 @@ { "Field": "next_reisekosten", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74556,10 +75288,10 @@ { "Field": "next_bestellung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74567,10 +75299,10 @@ { "Field": "next_gutschrift", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74578,10 +75310,10 @@ { "Field": "next_kundennummer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74589,10 +75321,10 @@ { "Field": "next_lieferantennummer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74600,10 +75332,10 @@ { "Field": "next_mitarbeiternummer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74611,10 +75343,10 @@ { "Field": "next_waren", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74622,10 +75354,10 @@ { "Field": "next_produktion", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74633,10 +75365,10 @@ { "Field": "next_sonstiges", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74644,10 +75376,10 @@ { "Field": "next_anfrage", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74655,10 +75387,10 @@ { "Field": "next_artikelnummer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74669,7 +75401,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74680,7 +75412,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74688,10 +75420,10 @@ { "Field": "dhlzahlungmandant", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74702,7 +75434,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74710,10 +75442,10 @@ { "Field": "land", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "DE", + "Default": "'de'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74798,10 +75530,10 @@ { "Field": "kasse_lagerprozess", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74809,10 +75541,10 @@ { "Field": "kasse_belegausgabe", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74830,22 +75562,22 @@ }, { "Field": "kasse_text_bemerkung", - "Type": "text", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(255)", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "'Interne Bemerkung'", + "Default": "'interne bemerkung'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "kasse_text_freitext", - "Type": "text", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(255)", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "'Text auf Beleg'", + "Default": "'text auf beleg'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75105,8 +75837,8 @@ }, { "Field": "kasse_vorauswahl_anrede", - "Type": "text", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(64)", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "'herr'", @@ -75171,8 +75903,8 @@ }, { "Field": "dpdendung", - "Type": "text", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(32)", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "'.csv'", @@ -75182,8 +75914,8 @@ }, { "Field": "dhlendung", - "Type": "text", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(32)", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "'.csv'", @@ -75238,10 +75970,10 @@ { "Field": "go_apiurl_prefix", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75249,10 +75981,10 @@ { "Field": "go_apiurl_postfix", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75260,10 +75992,10 @@ { "Field": "go_apiurl_user", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75271,10 +76003,10 @@ { "Field": "go_username", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75282,10 +76014,10 @@ { "Field": "go_password", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75293,10 +76025,10 @@ { "Field": "go_ax4nr", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75304,10 +76036,10 @@ { "Field": "go_name1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75315,10 +76047,10 @@ { "Field": "go_name2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75326,10 +76058,10 @@ { "Field": "go_abteilung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75337,10 +76069,10 @@ { "Field": "go_strasse1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75348,10 +76080,10 @@ { "Field": "go_strasse2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75359,7 +76091,7 @@ { "Field": "go_hausnummer", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -75370,10 +76102,10 @@ { "Field": "go_plz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75381,10 +76113,10 @@ { "Field": "go_ort", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75392,10 +76124,10 @@ { "Field": "go_land", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75406,7 +76138,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75414,10 +76146,10 @@ { "Field": "go_format", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75425,10 +76157,10 @@ { "Field": "go_ausgabe", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75436,10 +76168,10 @@ { "Field": "intraship_exportgrund", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75447,10 +76179,10 @@ { "Field": "billsafe_merchantId", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75458,10 +76190,10 @@ { "Field": "billsafe_merchantLicenseSandbox", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75469,10 +76201,10 @@ { "Field": "billsafe_merchantLicenseLive", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75480,10 +76212,10 @@ { "Field": "billsafe_applicationSignature", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75491,10 +76223,10 @@ { "Field": "billsafe_applicationVersion", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75502,10 +76234,10 @@ { "Field": "secupay_apikey", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75513,10 +76245,10 @@ { "Field": "secupay_url", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75545,8 +76277,8 @@ }, { "Field": "status", - "Type": "text", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(64)", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "'gestartet'", @@ -75589,11 +76321,11 @@ }, { "Field": "kasse_bon_zeile1", - "Type": "text", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(255)", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "'Xentral Store'", + "Default": "'xentral store'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75601,10 +76333,10 @@ { "Field": "kasse_bon_zeile2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75612,10 +76344,10 @@ { "Field": "kasse_bon_zeile3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75765,8 +76497,8 @@ }, { "Field": "intraship_partnerid", - "Type": "text", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(32)", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "'01'", @@ -75788,7 +76520,7 @@ { "Field": "intraship_retourenaccount", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -75799,10 +76531,10 @@ { "Field": "absendegrussformel", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75821,10 +76553,10 @@ { "Field": "intraship_partnerid_welt", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75832,10 +76564,10 @@ { "Field": "next_kalkulation", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75843,10 +76575,10 @@ { "Field": "next_preisanfrage", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75854,10 +76586,10 @@ { "Field": "next_proformarechnung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75865,10 +76597,10 @@ { "Field": "next_verbindlichkeit", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75876,10 +76608,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75887,10 +76619,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75898,10 +76630,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75909,10 +76641,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75920,10 +76652,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75931,10 +76663,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75942,10 +76674,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75953,10 +76685,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75964,10 +76696,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75975,10 +76707,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75986,7 +76718,7 @@ { "Field": "mahnwesen_abweichender_versender", "Type": "varchar(40)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -76140,10 +76872,10 @@ { "Field": "kasse_rksv_tool", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76151,10 +76883,10 @@ { "Field": "kasse_rksv_kartenleser", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76162,10 +76894,10 @@ { "Field": "kasse_rksv_karteseriennummer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76173,10 +76905,10 @@ { "Field": "kasse_rksv_kartepin", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76184,10 +76916,10 @@ { "Field": "kasse_rksv_aeskey", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76195,10 +76927,10 @@ { "Field": "kasse_rksv_publiczertifikat", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76206,10 +76938,10 @@ { "Field": "kasse_rksv_publiczertifikatkette", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76217,10 +76949,10 @@ { "Field": "kasse_rksv_kassenid", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76371,7 +77103,7 @@ { "Field": "steuernummer", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -76393,7 +77125,7 @@ { "Field": "orderpicking_sort", "Type": "varchar(26)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -76437,10 +77169,10 @@ { "Field": "zahlungsweise", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76448,10 +77180,10 @@ { "Field": "zahlungsweiselieferant", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76459,10 +77191,10 @@ { "Field": "versandart", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76470,10 +77202,10 @@ { "Field": "ups_api_user", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76481,10 +77213,10 @@ { "Field": "ups_api_password", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76492,10 +77224,10 @@ { "Field": "ups_api_key", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76503,10 +77235,10 @@ { "Field": "ups_accountnumber", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76514,10 +77246,10 @@ { "Field": "ups_company_name", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76525,10 +77257,10 @@ { "Field": "ups_street_name", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76536,7 +77268,7 @@ { "Field": "ups_street_number", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -76547,10 +77279,10 @@ { "Field": "ups_zip", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76558,7 +77290,7 @@ { "Field": "ups_country", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -76569,10 +77301,10 @@ { "Field": "ups_city", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76580,10 +77312,10 @@ { "Field": "ups_email", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76591,10 +77323,10 @@ { "Field": "ups_phone", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76602,10 +77334,10 @@ { "Field": "ups_internet", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76613,10 +77345,10 @@ { "Field": "ups_contact_person", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76627,7 +77359,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76638,7 +77370,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76649,7 +77381,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76660,7 +77392,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76678,19 +77410,19 @@ }, { "Field": "ups_ausgabe", - "Type": "text", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(16)", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "'GIF'", + "Default": "'gif'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ups_package_code", - "Type": "text", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(16)", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "'02'", @@ -76700,19 +77432,19 @@ }, { "Field": "ups_package_description", - "Type": "text", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(255)", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "'Customer Supplied'", + "Default": "'customer supplied'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" }, { "Field": "ups_service_code", - "Type": "text", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(16)", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "'11'", @@ -76722,11 +77454,11 @@ }, { "Field": "ups_service_description", - "Type": "text", - "Collation": "utf8mb3_general_ci", + "Type": "varchar(255)", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "'UPS Standard'", + "Default": "'ups standard'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76734,10 +77466,10 @@ { "Field": "email_html_template", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76748,7 +77480,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76759,7 +77491,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76767,10 +77499,10 @@ { "Field": "next_retoure", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76778,10 +77510,10 @@ { "Field": "next_goodspostingdocument", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76833,7 +77565,7 @@ { "Field": "steuer_erloese_inland_normal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -76844,7 +77576,7 @@ { "Field": "steuer_aufwendung_inland_normal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -76855,7 +77587,7 @@ { "Field": "steuer_erloese_inland_ermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -76866,7 +77598,7 @@ { "Field": "steuer_aufwendung_inland_ermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -76877,7 +77609,7 @@ { "Field": "steuer_erloese_inland_nichtsteuerbar", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -76888,7 +77620,7 @@ { "Field": "steuer_aufwendung_inland_nichtsteuerbar", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -76899,7 +77631,7 @@ { "Field": "steuer_erloese_inland_innergemeinschaftlich", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -76910,7 +77642,7 @@ { "Field": "steuer_aufwendung_inland_innergemeinschaftlich", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -76921,7 +77653,7 @@ { "Field": "steuer_erloese_inland_eunormal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -76932,7 +77664,7 @@ { "Field": "steuer_aufwendung_inland_eunormal", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -76943,7 +77675,7 @@ { "Field": "steuer_erloese_inland_euermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -76954,7 +77686,7 @@ { "Field": "steuer_aufwendung_inland_euermaessigt", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -76965,7 +77697,7 @@ { "Field": "steuer_erloese_inland_export", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -76976,7 +77708,7 @@ { "Field": "steuer_aufwendung_inland_import", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -77108,10 +77840,10 @@ { "Field": "klarna_merchantid", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77119,10 +77851,10 @@ { "Field": "klarna_sharedsecret", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77284,10 +78016,10 @@ { "Field": "zvt100url", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77295,7 +78027,7 @@ { "Field": "zvt100port", "Type": "varchar(5)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -77361,10 +78093,10 @@ { "Field": "next_receiptdocument", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77384,18 +78116,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "abkuerzung", - "Non_unique": "1", - "columns": "abkuerzung" + "columns": [ + "abkuerzung" + ] }, { "Key_name": "kunde", - "Non_unique": "1", - "columns": "kunde" + "columns": [ + "kunde" + ] } ] }, @@ -77409,7 +78144,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -77475,7 +78210,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77486,7 +78221,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77497,7 +78232,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77508,7 +78243,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77519,7 +78254,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77530,7 +78265,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77541,7 +78276,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77552,7 +78287,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77563,7 +78298,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77593,10 +78328,10 @@ { "Field": "kalkulationbasis", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "prostueck", + "Default": "'prostueck'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77604,7 +78339,7 @@ { "Field": "nr", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -77618,7 +78353,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77629,7 +78364,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77640,7 +78375,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77662,7 +78397,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77670,7 +78405,7 @@ { "Field": "kommentar", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -77693,8 +78428,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -77708,7 +78444,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -77719,7 +78455,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77730,7 +78466,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77741,7 +78477,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77752,7 +78488,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77763,7 +78499,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77771,10 +78507,10 @@ { "Field": "mitarbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77782,10 +78518,10 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77796,7 +78532,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77816,8 +78552,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -77831,7 +78568,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -77839,10 +78576,10 @@ { "Field": "meldung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77850,10 +78587,10 @@ { "Field": "dump", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77861,7 +78598,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -77872,7 +78609,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -77883,7 +78620,7 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -77894,7 +78631,7 @@ { "Field": "funktionsname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -77908,7 +78645,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77927,10 +78664,10 @@ { "Field": "argumente", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77939,8 +78676,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -77954,7 +78692,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -77962,7 +78700,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -77973,10 +78711,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78031,7 +78769,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78042,7 +78780,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78050,7 +78788,7 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -78094,7 +78832,7 @@ { "Field": "belegtyp", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -78117,23 +78855,27 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "gruppe", - "Non_unique": "1", - "columns": "gruppe" + "columns": [ + "gruppe" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -78147,7 +78889,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -78158,7 +78900,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78169,7 +78911,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78177,7 +78919,7 @@ { "Field": "angelegt_von", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -78244,13 +78986,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "userid", - "Non_unique": "1", - "columns": "userid" + "columns": [ + "userid" + ] } ] }, @@ -78264,7 +79008,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -78294,7 +79038,7 @@ { "Field": "artikelkategorie", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -78316,7 +79060,7 @@ { "Field": "waehrung", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -78352,7 +79096,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78470,7 +79214,7 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -78481,7 +79225,7 @@ { "Field": "name_de", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -78493,8 +79237,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -78508,7 +79253,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -78563,7 +79308,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78574,7 +79319,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78582,7 +79327,7 @@ { "Field": "provisiontyp", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -78616,8 +79361,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -78631,7 +79377,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -78639,10 +79385,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78650,10 +79396,10 @@ { "Field": "bedingung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78661,10 +79407,10 @@ { "Field": "art", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78675,7 +79421,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78686,7 +79432,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78694,10 +79440,10 @@ { "Field": "periode", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "1440", + "Default": "'1440'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78705,10 +79451,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78716,10 +79462,10 @@ { "Field": "parameter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78730,7 +79476,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78741,7 +79487,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78752,7 +79498,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78763,7 +79509,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78771,7 +79517,7 @@ { "Field": "art_filter", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -78782,7 +79528,7 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -78816,13 +79562,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "parameter", - "Non_unique": "1", - "columns": "parameter" + "columns": [ + "parameter" + ] } ] }, @@ -78836,7 +79584,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -78855,10 +79603,10 @@ { "Field": "formula", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78867,13 +79615,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id" + ] } ] }, @@ -78887,7 +79637,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -78898,7 +79648,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78909,7 +79659,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78928,7 +79678,7 @@ { "Field": "ext_sku", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -78939,7 +79689,7 @@ { "Field": "ext_ean", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -78950,7 +79700,7 @@ { "Field": "ext_name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -78961,7 +79711,7 @@ { "Field": "ext_item_id", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -78972,7 +79722,7 @@ { "Field": "ext_unit_id", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -78984,8 +79734,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -78999,7 +79750,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79010,7 +79761,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79021,7 +79772,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79032,7 +79783,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79051,10 +79802,10 @@ { "Field": "specwert", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79062,10 +79813,10 @@ { "Field": "specbezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79073,10 +79824,10 @@ { "Field": "specname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79095,10 +79846,10 @@ { "Field": "type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79106,10 +79857,10 @@ { "Field": "typevalue", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79118,8 +79869,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -79133,7 +79885,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79144,7 +79896,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79155,7 +79907,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79166,7 +79918,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79177,7 +79929,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79185,10 +79937,10 @@ { "Field": "vorschlagbezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79196,10 +79948,10 @@ { "Field": "vorschlagparentid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79207,10 +79959,10 @@ { "Field": "level", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79218,10 +79970,10 @@ { "Field": "lieferkategorie", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79230,8 +79982,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -79245,7 +79998,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79256,7 +80009,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79264,7 +80017,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -79287,8 +80040,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -79302,7 +80056,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79365,7 +80119,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -79376,7 +80130,7 @@ { "Field": "status_qs", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -79387,7 +80141,7 @@ { "Field": "updated_by", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -79398,7 +80152,7 @@ { "Field": "document_number", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -79454,8 +80208,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -79469,7 +80224,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79488,7 +80243,7 @@ { "Field": "log", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -79499,7 +80254,7 @@ { "Field": "created_by", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -79522,13 +80277,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "receiptdocument_id", - "Non_unique": "1", - "columns": "receiptdocument_id" + "columns": [ + "receiptdocument_id" + ] } ] }, @@ -79542,7 +80299,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79616,7 +80373,7 @@ { "Field": "type", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -79627,7 +80384,7 @@ { "Field": "doctype", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -79661,13 +80418,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "receiptdocument_id", - "Non_unique": "1", - "columns": "receiptdocument_id" + "columns": [ + "receiptdocument_id" + ] } ] }, @@ -79681,7 +80440,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79692,7 +80451,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79703,7 +80462,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79711,10 +80470,10 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79722,10 +80481,10 @@ { "Field": "anlegeart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79733,10 +80492,10 @@ { "Field": "belegnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79744,10 +80503,10 @@ { "Field": "auftrag", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79758,7 +80517,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79766,10 +80525,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79777,10 +80536,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79788,10 +80547,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79799,10 +80558,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79813,7 +80572,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79821,10 +80580,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79832,10 +80591,10 @@ { "Field": "abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79843,10 +80602,10 @@ { "Field": "unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79854,10 +80613,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79865,10 +80624,10 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79876,10 +80635,10 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79887,10 +80646,10 @@ { "Field": "plz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79898,10 +80657,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79909,10 +80668,10 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79920,10 +80679,10 @@ { "Field": "ustid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79934,7 +80693,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79945,7 +80704,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79956,7 +80715,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79967,7 +80726,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79975,10 +80734,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79986,10 +80745,10 @@ { "Field": "telefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79997,10 +80756,10 @@ { "Field": "telefax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80008,10 +80767,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80019,10 +80778,10 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80033,7 +80792,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80041,10 +80800,10 @@ { "Field": "versandart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80055,7 +80814,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80063,10 +80822,10 @@ { "Field": "buchhaltung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80074,10 +80833,10 @@ { "Field": "zahlungsweise", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80085,10 +80844,10 @@ { "Field": "zahlungsstatus", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80121,7 +80880,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80132,7 +80891,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80143,7 +80902,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80154,7 +80913,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80165,7 +80924,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80176,7 +80935,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80187,7 +80946,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80195,10 +80954,10 @@ { "Field": "versendet_per", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80206,10 +80965,10 @@ { "Field": "versendet_durch", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80220,7 +80979,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80228,10 +80987,10 @@ { "Field": "mahnwesen", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80242,7 +81001,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80253,7 +81012,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80261,10 +81020,10 @@ { "Field": "mahnwesen_internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80275,7 +81034,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80286,7 +81045,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80308,7 +81067,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80473,7 +81232,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80481,7 +81240,7 @@ { "Field": "aktion", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -80492,7 +81251,7 @@ { "Field": "vertrieb", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -80506,7 +81265,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80517,7 +81276,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80539,7 +81298,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80550,7 +81309,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80561,7 +81320,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80569,10 +81328,10 @@ { "Field": "ihrebestellnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80580,10 +81339,10 @@ { "Field": "anschreiben", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80594,7 +81353,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80616,7 +81375,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80627,7 +81386,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80638,7 +81397,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80649,7 +81408,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80660,7 +81419,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80671,7 +81430,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80682,7 +81441,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80693,7 +81452,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80704,7 +81463,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80715,7 +81474,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80778,10 +81537,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "EUR", + "Default": "'eur'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80792,7 +81551,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80833,10 +81592,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "firma", + "Default": "'firma'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80847,7 +81606,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80877,10 +81636,10 @@ { "Field": "systemfreitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80910,7 +81669,7 @@ { "Field": "internebezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -80924,7 +81683,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80946,7 +81705,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80954,7 +81713,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -80965,7 +81724,7 @@ { "Field": "bundesland", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -80976,7 +81735,7 @@ { "Field": "gln", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -80987,7 +81746,7 @@ { "Field": "deliverythresholdvatid", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -81001,7 +81760,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81023,7 +81782,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81042,7 +81801,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -81053,10 +81812,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81064,10 +81823,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81075,7 +81834,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -81089,7 +81848,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81130,7 +81889,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -81141,7 +81900,7 @@ { "Field": "kundennummer_buchhaltung", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -81152,7 +81911,7 @@ { "Field": "storage_country", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -81164,63 +81923,75 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "projekt", - "Non_unique": "1", - "columns": "projekt" + "columns": [ + "projekt" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] }, { "Key_name": "auftragid", - "Non_unique": "1", - "columns": "auftragid" + "columns": [ + "auftragid" + ] }, { "Key_name": "status", - "Non_unique": "1", - "columns": "status" + "columns": [ + "status" + ] }, { "Key_name": "datum", - "Non_unique": "1", - "columns": "datum" + "columns": [ + "datum" + ] }, { "Key_name": "belegnr", - "Non_unique": "1", - "columns": "belegnr" + "columns": [ + "belegnr" + ] }, { "Key_name": "soll", - "Non_unique": "1", - "columns": "soll" + "columns": [ + "soll" + ] }, { "Key_name": "zahlungsstatus", - "Non_unique": "1", - "columns": "zahlungsstatus" + "columns": [ + "zahlungsstatus" + ] }, { "Key_name": "provdatum", - "Non_unique": "1", - "columns": "provdatum" + "columns": [ + "provdatum" + ] }, { "Key_name": "lieferschein", - "Non_unique": "1", - "columns": "lieferschein" + "columns": [ + "lieferschein" + ] }, { "Key_name": "versandart", - "Non_unique": "1", - "columns": "versandart" + "columns": [ + "versandart" + ] } ] }, @@ -81234,7 +82005,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -81245,7 +82016,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81256,7 +82027,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81267,7 +82038,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81275,10 +82046,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81286,10 +82057,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81297,10 +82068,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81308,10 +82079,10 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81322,7 +82093,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81341,10 +82112,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81355,7 +82126,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81363,10 +82134,10 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81377,7 +82148,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81385,10 +82156,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81396,10 +82167,10 @@ { "Field": "umsatzsteuer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81407,10 +82178,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81443,7 +82214,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81454,7 +82225,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81465,7 +82236,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81476,7 +82247,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81487,7 +82258,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81498,7 +82269,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81509,7 +82280,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81520,7 +82291,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81531,7 +82302,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81542,7 +82313,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81553,7 +82324,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81564,7 +82335,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81572,7 +82343,7 @@ { "Field": "einheit", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -81586,7 +82357,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81594,10 +82365,10 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81605,10 +82376,10 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81616,7 +82387,7 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -81627,10 +82398,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81638,10 +82409,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81649,10 +82420,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81660,10 +82431,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81671,10 +82442,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81682,10 +82453,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81693,10 +82464,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81704,10 +82475,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81715,10 +82486,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81726,10 +82497,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81770,7 +82541,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -81784,7 +82555,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81792,10 +82563,10 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81803,10 +82574,10 @@ { "Field": "erloese", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81825,7 +82596,7 @@ { "Field": "einkaufspreiswaehrung", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -81869,7 +82640,7 @@ { "Field": "ekwaehrung", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -81891,10 +82662,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81902,10 +82673,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81913,10 +82684,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81924,10 +82695,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81935,10 +82706,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81946,10 +82717,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81957,10 +82728,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81968,10 +82739,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81979,10 +82750,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81990,10 +82761,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82001,10 +82772,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82012,10 +82783,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82023,10 +82794,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82034,10 +82805,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82045,10 +82816,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82056,10 +82827,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82067,10 +82838,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82078,10 +82849,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82089,10 +82860,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82100,10 +82871,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82111,10 +82882,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82122,10 +82893,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82133,10 +82904,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82144,10 +82915,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82155,10 +82926,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82166,10 +82937,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82177,10 +82948,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82188,10 +82959,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82199,10 +82970,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82210,10 +82981,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82221,7 +82992,7 @@ { "Field": "formelmenge", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -82232,7 +83003,7 @@ { "Field": "formelpreis", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -82257,7 +83028,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82268,7 +83039,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82279,7 +83050,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82290,7 +83061,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82301,7 +83072,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82312,7 +83083,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82345,7 +83116,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82356,7 +83127,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82367,7 +83138,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82378,7 +83149,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82387,23 +83158,27 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "rechnung", - "Non_unique": "1", - "columns": "rechnung" + "columns": [ + "rechnung" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] }, { "Key_name": "auftrag_position_id", - "Non_unique": "1", - "columns": "auftrag_position_id" + "columns": [ + "auftrag_position_id" + ] } ] }, @@ -82417,7 +83192,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -82428,7 +83203,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82439,7 +83214,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82447,10 +83222,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82458,10 +83233,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82470,13 +83245,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "rechnung", - "Non_unique": "1", - "columns": "rechnung" + "columns": [ + "rechnung" + ] } ] }, @@ -82490,7 +83267,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -82501,7 +83278,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82509,10 +83286,10 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82523,7 +83300,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82531,10 +83308,10 @@ { "Field": "prefix", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82542,10 +83319,10 @@ { "Field": "reisekostenart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82553,10 +83330,10 @@ { "Field": "belegnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82564,10 +83341,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82575,10 +83352,10 @@ { "Field": "auftrag", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82589,7 +83366,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82597,10 +83374,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82608,10 +83385,10 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82622,7 +83399,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82633,7 +83410,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82641,10 +83418,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82652,10 +83429,10 @@ { "Field": "abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82663,10 +83440,10 @@ { "Field": "unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82674,10 +83451,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82685,10 +83462,10 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82696,10 +83473,10 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82707,10 +83484,10 @@ { "Field": "plz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82718,10 +83495,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82729,10 +83506,10 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82740,10 +83517,10 @@ { "Field": "ustid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82751,10 +83528,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82762,10 +83539,10 @@ { "Field": "telefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82773,10 +83550,10 @@ { "Field": "telefax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82784,10 +83561,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82795,10 +83572,10 @@ { "Field": "kundennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82806,10 +83583,10 @@ { "Field": "versandart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82817,10 +83594,10 @@ { "Field": "versand", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82831,7 +83608,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82842,7 +83619,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82853,7 +83630,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82861,10 +83638,10 @@ { "Field": "versendet_per", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82872,10 +83649,10 @@ { "Field": "versendet_durch", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82886,7 +83663,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82908,7 +83685,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82919,7 +83696,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82930,7 +83707,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83004,10 +83781,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": "EUR", + "Default": "'eur'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83015,10 +83792,10 @@ { "Field": "anlass", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83026,10 +83803,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83040,7 +83817,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83051,7 +83828,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83059,10 +83836,10 @@ { "Field": "von_zeit", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83070,10 +83847,10 @@ { "Field": "bis_zeit", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83114,10 +83891,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": "firma", + "Default": "'firma'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83126,8 +83903,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -83141,7 +83919,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -83152,7 +83930,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83160,10 +83938,10 @@ { "Field": "reisekostenart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83171,10 +83949,10 @@ { "Field": "artikel", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83185,7 +83963,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83193,10 +83971,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83204,10 +83982,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83215,10 +83993,10 @@ { "Field": "ort", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83226,10 +84004,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83237,10 +84015,10 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83248,10 +84026,10 @@ { "Field": "verrechnungsart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83262,7 +84040,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83273,7 +84051,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83284,7 +84062,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83292,10 +84070,10 @@ { "Field": "von", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83303,10 +84081,10 @@ { "Field": "bis", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83317,7 +84095,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83325,10 +84103,10 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83336,10 +84114,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83347,10 +84125,10 @@ { "Field": "bezahlt_wie", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83358,10 +84136,10 @@ { "Field": "uststeuersatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83372,7 +84150,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83394,7 +84172,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83405,7 +84183,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83413,10 +84191,10 @@ { "Field": "abgerechnet_objekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83427,7 +84205,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83438,7 +84216,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83449,7 +84227,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83491,13 +84269,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "reisekosten", - "Non_unique": "1", - "columns": "reisekosten" + "columns": [ + "reisekosten" + ] } ] }, @@ -83511,7 +84291,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -83522,7 +84302,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83533,7 +84313,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83541,10 +84321,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83552,10 +84332,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83564,13 +84344,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "reisekosten", - "Non_unique": "1", - "columns": "reisekosten" + "columns": [ + "reisekosten" + ] } ] }, @@ -83584,7 +84366,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -83592,10 +84374,10 @@ { "Field": "nummer", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83603,10 +84385,10 @@ { "Field": "beschreibung", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83614,10 +84396,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83626,8 +84408,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -83641,7 +84424,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -83649,7 +84432,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -83660,10 +84443,10 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83682,10 +84465,10 @@ { "Field": "sql_query", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83693,10 +84476,10 @@ { "Field": "remark", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83704,10 +84487,10 @@ { "Field": "category", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83726,10 +84509,10 @@ { "Field": "csv_delimiter", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83737,10 +84520,10 @@ { "Field": "csv_enclosure", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83749,8 +84532,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -83764,7 +84548,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -83783,7 +84567,7 @@ { "Field": "key_name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -83794,7 +84578,7 @@ { "Field": "title", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -83805,7 +84589,7 @@ { "Field": "width", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -83816,7 +84600,7 @@ { "Field": "alignment", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -83849,7 +84633,7 @@ { "Field": "sorting", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -83860,10 +84644,10 @@ { "Field": "format_type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83871,10 +84655,10 @@ { "Field": "format_statement", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83883,8 +84667,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -83898,7 +84683,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -83929,8 +84714,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -83944,7 +84730,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -83963,7 +84749,7 @@ { "Field": "varname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -83974,7 +84760,7 @@ { "Field": "displayname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -83985,7 +84771,7 @@ { "Field": "description", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -83996,7 +84782,7 @@ { "Field": "default_value", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84007,7 +84793,7 @@ { "Field": "options", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84018,7 +84804,7 @@ { "Field": "control_type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84040,7 +84826,7 @@ { "Field": "variable_extern", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84052,8 +84838,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -84067,7 +84854,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -84097,7 +84884,7 @@ { "Field": "chart_axislabel", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84108,7 +84895,7 @@ { "Field": "chart_type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84119,7 +84906,7 @@ { "Field": "chart_x_column", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84130,7 +84917,7 @@ { "Field": "data_columns", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84141,7 +84928,7 @@ { "Field": "chart_group_column", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84152,7 +84939,7 @@ { "Field": "chart_dateformat", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84174,7 +84961,7 @@ { "Field": "chart_interval_mode", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84240,7 +85027,7 @@ { "Field": "menu_doctype", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84251,7 +85038,7 @@ { "Field": "menu_label", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84262,7 +85049,7 @@ { "Field": "menu_format", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84284,7 +85071,7 @@ { "Field": "tab_module", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84295,7 +85082,7 @@ { "Field": "tab_action", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84306,7 +85093,7 @@ { "Field": "tab_label", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84317,7 +85104,7 @@ { "Field": "tab_position", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84329,8 +85116,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -84344,7 +85132,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -84374,7 +85162,7 @@ { "Field": "ftp_type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84385,7 +85173,7 @@ { "Field": "ftp_host", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84396,7 +85184,7 @@ { "Field": "ftp_port", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84407,7 +85195,7 @@ { "Field": "ftp_user", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84418,7 +85206,7 @@ { "Field": "ftp_password", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84429,7 +85217,7 @@ { "Field": "ftp_interval_mode", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84440,7 +85228,7 @@ { "Field": "ftp_interval_value", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84454,7 +85242,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84462,7 +85250,7 @@ { "Field": "ftp_format", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84473,7 +85261,7 @@ { "Field": "ftp_filename", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84487,7 +85275,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84506,10 +85294,10 @@ { "Field": "email_recipient", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84517,7 +85305,7 @@ { "Field": "email_subject", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84528,7 +85316,7 @@ { "Field": "email_interval_mode", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84539,7 +85327,7 @@ { "Field": "email_interval_value", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84553,7 +85341,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84561,7 +85349,7 @@ { "Field": "email_format", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84572,7 +85360,7 @@ { "Field": "email_filename", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84586,7 +85374,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84594,7 +85382,7 @@ { "Field": "url_format", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84608,7 +85396,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84619,7 +85407,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84627,10 +85415,10 @@ { "Field": "url_address", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84638,10 +85426,10 @@ { "Field": "url_token", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84671,7 +85459,7 @@ { "Field": "api_format", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84683,8 +85471,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -84698,7 +85487,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -84728,7 +85517,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -84784,8 +85573,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -84799,7 +85589,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -84810,7 +85600,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84818,10 +85608,10 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84829,10 +85619,10 @@ { "Field": "belegnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84840,10 +85630,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84851,10 +85641,10 @@ { "Field": "lieferschein", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84865,7 +85655,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84873,10 +85663,10 @@ { "Field": "auftrag", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84887,7 +85677,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84895,10 +85685,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84906,10 +85696,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84920,7 +85710,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84928,10 +85718,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84939,10 +85729,10 @@ { "Field": "abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84950,10 +85740,10 @@ { "Field": "unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84961,10 +85751,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84972,10 +85762,10 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84983,10 +85773,10 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84994,10 +85784,10 @@ { "Field": "plz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85005,10 +85795,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85016,10 +85806,10 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85038,10 +85828,10 @@ { "Field": "liefername", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85049,10 +85839,10 @@ { "Field": "lieferabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85060,10 +85850,10 @@ { "Field": "lieferunterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85071,10 +85861,10 @@ { "Field": "lieferstrasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85082,10 +85872,10 @@ { "Field": "lieferadresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85093,10 +85883,10 @@ { "Field": "lieferansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85104,10 +85894,10 @@ { "Field": "lieferplz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85115,10 +85905,10 @@ { "Field": "lieferort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85126,10 +85916,10 @@ { "Field": "lieferland", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85137,10 +85927,10 @@ { "Field": "ustid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85148,10 +85938,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85159,10 +85949,10 @@ { "Field": "telefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85170,10 +85960,10 @@ { "Field": "telefax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85181,10 +85971,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85192,10 +85982,10 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85203,10 +85993,10 @@ { "Field": "versandart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85214,10 +86004,10 @@ { "Field": "versand", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85228,7 +86018,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85239,7 +86029,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85250,7 +86040,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85258,10 +86048,10 @@ { "Field": "versendet_per", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85269,10 +86059,10 @@ { "Field": "versendet_durch", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85283,7 +86073,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85305,7 +86095,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85313,7 +86103,7 @@ { "Field": "vertrieb", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -85327,7 +86117,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85335,10 +86125,10 @@ { "Field": "ihrebestellnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85346,10 +86136,10 @@ { "Field": "anschreiben", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85360,7 +86150,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85390,10 +86180,10 @@ { "Field": "lieferantenretoureinfo", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85445,10 +86235,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": "firma", + "Default": "'firma'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85456,10 +86246,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85470,7 +86260,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85533,7 +86323,7 @@ { "Field": "internebezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -85547,7 +86337,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85566,7 +86356,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -85577,7 +86367,7 @@ { "Field": "bundesland", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -85588,7 +86378,7 @@ { "Field": "gln", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -85613,7 +86403,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85635,7 +86425,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85654,10 +86444,10 @@ { "Field": "bodyzusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85665,10 +86455,10 @@ { "Field": "lieferbedingung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85676,7 +86466,7 @@ { "Field": "titel", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -85709,7 +86499,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -85753,7 +86543,7 @@ { "Field": "fortschritt", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -85787,23 +86577,27 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] }, { "Key_name": "status", - "Non_unique": "1", - "columns": "status" + "columns": [ + "status" + ] }, { "Key_name": "versandart", - "Non_unique": "1", - "columns": "versandart" + "columns": [ + "versandart" + ] } ] }, @@ -85817,7 +86611,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -85828,7 +86622,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85839,7 +86633,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85850,7 +86644,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85858,10 +86652,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85869,10 +86663,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85880,10 +86674,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85891,10 +86685,10 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85902,10 +86696,10 @@ { "Field": "seriennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85916,7 +86710,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85927,7 +86721,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85935,10 +86729,10 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85949,7 +86743,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85957,10 +86751,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85968,10 +86762,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85982,7 +86776,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85993,7 +86787,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86023,7 +86817,7 @@ { "Field": "einheit", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -86034,10 +86828,10 @@ { "Field": "zolltarifnummer", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86045,10 +86839,10 @@ { "Field": "herkunftsland", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86056,7 +86850,7 @@ { "Field": "artikelnummerkunde", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -86067,10 +86861,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86078,10 +86872,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86089,10 +86883,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86100,10 +86894,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86111,10 +86905,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86122,10 +86916,10 @@ { "Field": "freifeld6", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86133,10 +86927,10 @@ { "Field": "freifeld7", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86144,10 +86938,10 @@ { "Field": "freifeld8", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86155,10 +86949,10 @@ { "Field": "freifeld9", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86166,10 +86960,10 @@ { "Field": "freifeld10", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86177,10 +86971,10 @@ { "Field": "freifeld11", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86188,10 +86982,10 @@ { "Field": "freifeld12", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86199,10 +86993,10 @@ { "Field": "freifeld13", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86210,10 +87004,10 @@ { "Field": "freifeld14", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86221,10 +87015,10 @@ { "Field": "freifeld15", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86232,10 +87026,10 @@ { "Field": "freifeld16", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86243,10 +87037,10 @@ { "Field": "freifeld17", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86254,10 +87048,10 @@ { "Field": "freifeld18", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86265,10 +87059,10 @@ { "Field": "freifeld19", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86276,10 +87070,10 @@ { "Field": "freifeld20", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86287,10 +87081,10 @@ { "Field": "freifeld21", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86298,10 +87092,10 @@ { "Field": "freifeld22", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86309,10 +87103,10 @@ { "Field": "freifeld23", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86320,10 +87114,10 @@ { "Field": "freifeld24", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86331,10 +87125,10 @@ { "Field": "freifeld25", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86342,10 +87136,10 @@ { "Field": "freifeld26", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86353,10 +87147,10 @@ { "Field": "freifeld27", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86364,10 +87158,10 @@ { "Field": "freifeld28", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86375,10 +87169,10 @@ { "Field": "freifeld29", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86386,10 +87180,10 @@ { "Field": "freifeld30", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86397,10 +87191,10 @@ { "Field": "freifeld31", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86408,10 +87202,10 @@ { "Field": "freifeld32", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86419,10 +87213,10 @@ { "Field": "freifeld33", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86430,10 +87224,10 @@ { "Field": "freifeld34", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86441,10 +87235,10 @@ { "Field": "freifeld35", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86452,10 +87246,10 @@ { "Field": "freifeld36", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86463,10 +87257,10 @@ { "Field": "freifeld37", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86474,10 +87268,10 @@ { "Field": "freifeld38", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86485,10 +87279,10 @@ { "Field": "freifeld39", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86496,10 +87290,10 @@ { "Field": "freifeld40", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86551,7 +87345,7 @@ { "Field": "lagertext", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -86595,7 +87389,7 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -86606,10 +87400,10 @@ { "Field": "grundbeschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86617,7 +87411,7 @@ { "Field": "aktion", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -86628,10 +87422,10 @@ { "Field": "aktionbeschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86673,13 +87467,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "retoure", - "Non_unique": "1", - "columns": "retoure" + "columns": [ + "retoure" + ] } ] }, @@ -86693,7 +87489,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -86704,7 +87500,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86715,7 +87511,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86723,10 +87519,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86734,10 +87530,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86746,13 +87542,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "retoure", - "Non_unique": "1", - "columns": "retoure" + "columns": [ + "retoure" + ] } ] }, @@ -86766,7 +87564,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -86788,7 +87586,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86796,7 +87594,7 @@ { "Field": "serialnumber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -86807,7 +87605,7 @@ { "Field": "batch", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -86818,7 +87616,7 @@ { "Field": "bestbefore", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -86830,13 +87628,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "delivery_note_id", - "Non_unique": "1", - "columns": "delivery_note_id" + "columns": [ + "delivery_note_id" + ] } ] }, @@ -86850,7 +87650,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -86861,7 +87661,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86869,10 +87669,10 @@ { "Field": "projekt", "Type": "varchar(222)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86883,7 +87683,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86891,10 +87691,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86905,7 +87705,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86913,10 +87713,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86927,7 +87727,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86935,10 +87735,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86946,10 +87746,10 @@ { "Field": "vorname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86957,10 +87757,10 @@ { "Field": "abteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86968,10 +87768,10 @@ { "Field": "unterabteilung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86979,10 +87779,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86990,10 +87790,10 @@ { "Field": "adresszusatz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87001,10 +87801,10 @@ { "Field": "plz", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87012,10 +87812,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87023,10 +87823,10 @@ { "Field": "ustid", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87034,10 +87834,10 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87045,10 +87845,10 @@ { "Field": "telefon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87056,10 +87856,10 @@ { "Field": "telefax", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87067,10 +87867,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87078,10 +87878,10 @@ { "Field": "kundennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87089,10 +87889,10 @@ { "Field": "lieferantennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87100,10 +87900,10 @@ { "Field": "zahlungsweise", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87114,7 +87914,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87122,10 +87922,10 @@ { "Field": "versandart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87136,7 +87936,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87144,10 +87944,10 @@ { "Field": "freitext", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87158,7 +87958,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87169,7 +87969,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87180,7 +87980,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87191,7 +87991,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87199,10 +87999,10 @@ { "Field": "einkaeufer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87213,7 +88013,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87233,8 +88033,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -87248,7 +88049,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -87259,7 +88060,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87270,7 +88071,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87278,10 +88079,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87292,7 +88093,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87303,7 +88104,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87311,10 +88112,10 @@ { "Field": "wunsch", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87322,10 +88123,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87336,7 +88137,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87344,10 +88145,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87358,7 +88159,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87377,10 +88178,10 @@ { "Field": "techniker", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87388,10 +88189,10 @@ { "Field": "buchhaltung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87402,7 +88203,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87413,7 +88214,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87421,7 +88222,7 @@ { "Field": "seriennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -87433,13 +88234,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -87453,7 +88256,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -87472,10 +88275,10 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": "offen", + "Default": "'offen'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87505,7 +88308,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -87528,8 +88331,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -87543,7 +88347,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -87573,7 +88377,7 @@ { "Field": "kommentar", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -87584,7 +88388,7 @@ { "Field": "link", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -87595,10 +88399,10 @@ { "Field": "interngrund", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87606,10 +88410,10 @@ { "Field": "externgrund", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87617,7 +88421,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -87640,8 +88444,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -87655,7 +88460,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -87663,10 +88468,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87674,10 +88479,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87685,10 +88490,10 @@ { "Field": "sprache", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87741,13 +88546,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "rmakategorie", - "Non_unique": "1", - "columns": "rmakategorie" + "columns": [ + "rmakategorie" + ] } ] }, @@ -87761,7 +88568,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -87769,10 +88576,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87780,10 +88587,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87791,10 +88598,10 @@ { "Field": "aktion", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87803,8 +88610,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -87818,7 +88626,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -87829,7 +88637,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87881,10 +88689,10 @@ { "Field": "referenz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87892,10 +88700,10 @@ { "Field": "art", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "material", + "Default": "'material'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87904,8 +88712,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -87919,7 +88728,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88016,23 +88825,27 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "lieferschein_position_id", - "Non_unique": "1", - "columns": "lieferschein_position_id" + "columns": [ + "lieferschein_position_id" + ] }, { "Key_name": "auftrag_position_id", - "Non_unique": "1", - "columns": "auftrag_position_id" + "columns": [ + "auftrag_position_id" + ] }, { "Key_name": "rechnung", - "Non_unique": "1", - "columns": "rechnung" + "columns": [ + "rechnung" + ] } ] }, @@ -88046,7 +88859,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88057,7 +88870,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88068,7 +88881,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88077,8 +88890,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -88092,7 +88906,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88111,10 +88925,10 @@ { "Field": "kommentar", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88156,8 +88970,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -88171,7 +88986,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88202,8 +89017,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -88217,7 +89033,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88225,10 +89041,10 @@ { "Field": "seriennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88239,7 +89055,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88250,7 +89066,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88258,10 +89074,10 @@ { "Field": "beschreibung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88272,7 +89088,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88283,7 +89099,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88294,7 +89110,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88302,10 +89118,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88316,7 +89132,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88325,8 +89141,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -88340,7 +89157,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88381,10 +89198,10 @@ { "Field": "bezeichnung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88392,10 +89209,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88406,7 +89223,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88447,7 +89264,7 @@ { "Field": "doctype", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -88472,7 +89289,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88480,10 +89297,10 @@ { "Field": "batch", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88503,8 +89320,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -88518,7 +89336,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88548,7 +89366,7 @@ { "Field": "ansprechpartner", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -88559,10 +89377,10 @@ { "Field": "nummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "UNI", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88570,10 +89388,10 @@ { "Field": "prio", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "niedrig", + "Default": "'niedrig'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88581,7 +89399,7 @@ { "Field": "eingangart", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -88595,7 +89413,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88606,7 +89424,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88614,7 +89432,7 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -88625,10 +89443,10 @@ { "Field": "beschreibung_html", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88636,10 +89454,10 @@ { "Field": "internebemerkung", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88647,10 +89465,10 @@ { "Field": "antwortankunden", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88669,10 +89487,10 @@ { "Field": "status", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "angelegt", + "Default": "'angelegt'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88691,7 +89509,7 @@ { "Field": "seriennummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -88738,7 +89556,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88768,7 +89586,7 @@ { "Field": "art", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -88779,7 +89597,7 @@ { "Field": "bereich", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -88790,10 +89608,10 @@ { "Field": "freifeld1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88801,10 +89619,10 @@ { "Field": "freifeld2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88812,10 +89630,10 @@ { "Field": "freifeld3", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88823,10 +89641,10 @@ { "Field": "freifeld4", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88834,10 +89652,10 @@ { "Field": "freifeld5", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88845,10 +89663,10 @@ { "Field": "version", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88856,7 +89674,7 @@ { "Field": "antwortankundenempfaenger", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -88867,7 +89685,7 @@ { "Field": "antwortankundenkopie", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -88878,7 +89696,7 @@ { "Field": "antwortankundenblindkopie", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -88889,7 +89707,7 @@ { "Field": "antwortankundenbetreff", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -88901,13 +89719,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "nummer", - "Non_unique": "0", - "columns": "nummer" + "columns": [ + "nummer" + ] } ] }, @@ -88921,7 +89741,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88943,7 +89763,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88951,10 +89771,10 @@ { "Field": "carrier", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88962,10 +89782,10 @@ { "Field": "shipment_id", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88973,10 +89793,10 @@ { "Field": "shipment_reference", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88984,10 +89804,10 @@ { "Field": "tracking", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88996,8 +89816,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -89011,7 +89832,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -89019,10 +89840,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89030,10 +89851,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89041,10 +89862,10 @@ { "Field": "url", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89052,10 +89873,10 @@ { "Field": "passwort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89063,10 +89884,10 @@ { "Field": "token", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89074,10 +89895,10 @@ { "Field": "challenge", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89088,7 +89909,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89099,7 +89920,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89110,7 +89931,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89327,7 +90148,7 @@ { "Field": "ab_nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -89547,7 +90368,7 @@ { "Field": "debitorennummer", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -89580,7 +90401,7 @@ { "Field": "api_account_token", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -89605,7 +90426,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89712,10 +90533,10 @@ { "Field": "json", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89723,7 +90544,7 @@ { "Field": "freitext", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -89756,10 +90577,10 @@ { "Field": "autoversandoption", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "standard", + "Default": "'standard'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89778,7 +90599,7 @@ { "Field": "shoptyp", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -89789,7 +90610,7 @@ { "Field": "modulename", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -89800,10 +90621,10 @@ { "Field": "einstellungen_json", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89902,7 +90723,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90043,8 +90864,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -90058,7 +90880,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90069,7 +90891,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90080,7 +90902,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90089,8 +90911,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -90104,7 +90927,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90145,7 +90968,7 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -90156,7 +90979,7 @@ { "Field": "letzteabgeholtenummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -90167,7 +90990,7 @@ { "Field": "type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -90200,7 +91023,7 @@ { "Field": "nummervon", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -90211,7 +91034,7 @@ { "Field": "nummerbis", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -90266,7 +91089,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -90300,13 +91123,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop", - "Non_unique": "1", - "columns": "shop" + "columns": [ + "shop" + ] } ] }, @@ -90320,7 +91145,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90350,7 +91175,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -90361,10 +91186,10 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90372,7 +91197,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -90395,13 +91220,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shopid", - "Non_unique": "1", - "columns": "shopid" + "columns": [ + "shopid", + "artikel" + ] } ] }, @@ -90415,7 +91243,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90426,7 +91254,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90437,7 +91265,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90457,8 +91285,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -90472,7 +91301,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90483,7 +91312,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90494,7 +91323,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90503,8 +91332,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -90518,7 +91348,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90529,7 +91359,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90537,7 +91367,7 @@ { "Field": "username", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -90548,10 +91378,10 @@ { "Field": "diff", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90570,7 +91400,7 @@ { "Field": "message", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -90581,7 +91411,7 @@ { "Field": "plaindiff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -90593,8 +91423,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -90608,7 +91439,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90619,7 +91450,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90627,7 +91458,7 @@ { "Field": "freifeld_wawi", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -90638,7 +91469,7 @@ { "Field": "freifeld_shop", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -90674,7 +91505,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90682,7 +91513,7 @@ { "Field": "updatedby", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -90694,8 +91525,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -90709,7 +91541,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90720,7 +91552,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90728,7 +91560,7 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -90740,13 +91572,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop", - "Non_unique": "1", - "columns": "shop" + "columns": [ + "shop" + ] } ] }, @@ -90760,7 +91594,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90768,10 +91602,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90782,7 +91616,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90793,7 +91627,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90804,7 +91638,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90815,7 +91649,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90823,10 +91657,10 @@ { "Field": "link", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90837,7 +91671,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90848,7 +91682,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90859,7 +91693,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90870,7 +91704,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90881,7 +91715,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90889,10 +91723,10 @@ { "Field": "artikel", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90900,10 +91734,10 @@ { "Field": "aktion", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90914,7 +91748,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90923,8 +91757,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -90938,7 +91773,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90979,7 +91814,7 @@ { "Field": "extid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -90990,7 +91825,7 @@ { "Field": "extparent", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91001,7 +91836,7 @@ { "Field": "extname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91037,7 +91872,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91045,7 +91880,7 @@ { "Field": "updatedby", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91057,18 +91892,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop", - "Non_unique": "1", - "columns": "shop" + "columns": [ + "shop" + ] }, { "Key_name": "kategorie", - "Non_unique": "1", - "columns": "kategorie" + "columns": [ + "kategorie" + ] } ] }, @@ -91082,7 +91920,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91123,10 +91961,10 @@ { "Field": "type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "Mitglied", + "Default": "'mitglied'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91134,7 +91972,7 @@ { "Field": "extgruppename", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91181,7 +92019,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91189,7 +92027,7 @@ { "Field": "updatedby", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91201,8 +92039,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -91216,7 +92055,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91235,7 +92074,7 @@ { "Field": "typ", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91246,10 +92085,10 @@ { "Field": "parameter1", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91257,10 +92096,10 @@ { "Field": "parameter2", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91268,7 +92107,7 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91290,7 +92129,7 @@ { "Field": "parameter3", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91301,7 +92140,7 @@ { "Field": "parameter4", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91313,13 +92152,18 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "Key_name": "shopid", + "columns": [ + "shopid", + "typ", + "parameter3", + "parameter4" + ] } ] }, @@ -91333,7 +92177,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91352,7 +92196,7 @@ { "Field": "tabelle", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -91385,7 +92229,7 @@ { "Field": "extid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91408,23 +92252,27 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop", - "Non_unique": "1", - "columns": "shop" + "columns": [ + "shop" + ] }, { "Key_name": "tabelle", - "Non_unique": "1", - "columns": "tabelle" + "columns": [ + "tabelle" + ] }, { "Key_name": "intid", - "Non_unique": "1", - "columns": "intid" + "columns": [ + "intid" + ] } ] }, @@ -91438,7 +92286,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91457,7 +92305,7 @@ { "Field": "land", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91468,7 +92316,7 @@ { "Field": "sprache", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91515,7 +92363,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91523,7 +92371,7 @@ { "Field": "updatedby", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91535,8 +92383,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -91550,7 +92399,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91561,7 +92410,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91569,10 +92418,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91583,7 +92432,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91591,10 +92440,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91602,10 +92451,10 @@ { "Field": "befehl", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91614,8 +92463,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -91629,7 +92479,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91640,7 +92490,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91651,7 +92501,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91659,7 +92509,7 @@ { "Field": "subshopkennung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91670,7 +92520,7 @@ { "Field": "sprache", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91706,7 +92556,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91714,7 +92564,7 @@ { "Field": "updatedby", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91726,8 +92576,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -91741,7 +92592,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91752,7 +92603,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91760,7 +92611,7 @@ { "Field": "versandart_shop", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91771,7 +92622,7 @@ { "Field": "versandart_wawision", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91793,10 +92644,10 @@ { "Field": "land", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91815,7 +92666,7 @@ { "Field": "versandart_ausgehend", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91840,7 +92691,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91848,7 +92699,7 @@ { "Field": "updatedby", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -91871,8 +92722,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -91886,7 +92738,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91897,7 +92749,7 @@ "Collation": null, "Null": "NO", "Key": "UNI", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91928,13 +92780,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "voucher_id", - "Non_unique": "0", - "columns": "voucher_id" + "columns": [ + "voucher_id" + ] } ] }, @@ -91948,7 +92802,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91967,7 +92821,7 @@ { "Field": "auftrag", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -91978,7 +92832,7 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -92001,18 +92855,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop", - "Non_unique": "1", - "columns": "shop" + "columns": [ + "shop" + ] }, { "Key_name": "auftrag", - "Non_unique": "1", - "columns": "auftrag" + "columns": [ + "auftrag" + ] } ] }, @@ -92026,7 +92883,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92037,7 +92894,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92045,7 +92902,7 @@ { "Field": "zahlweise_shop", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -92056,7 +92913,7 @@ { "Field": "zahlweise_wawision", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -92122,7 +92979,7 @@ { "Field": "updatedby", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -92145,8 +93002,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -92160,7 +93018,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92168,10 +93026,10 @@ { "Field": "shop", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92179,10 +93037,10 @@ { "Field": "funktion", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92190,10 +93048,10 @@ { "Field": "daten", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92215,7 +93073,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92226,7 +93084,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92237,7 +93095,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92259,7 +93117,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92267,10 +93125,10 @@ { "Field": "apifunktion", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92278,10 +93136,10 @@ { "Field": "feedid", "Type": "varchar(50)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92292,7 +93150,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92311,10 +93169,10 @@ { "Field": "fehlertext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92345,8 +93203,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -92360,7 +93219,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92368,10 +93227,10 @@ { "Field": "orderid", "Type": "varchar(30)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92379,10 +93238,10 @@ { "Field": "orderitemid", "Type": "varchar(30)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92390,10 +93249,10 @@ { "Field": "nextordertoken", "Type": "varchar(30)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92401,10 +93260,10 @@ { "Field": "nextitemtoken", "Type": "varchar(30)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92415,7 +93274,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92423,7 +93282,7 @@ { "Field": "tracking", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -92500,7 +93359,7 @@ { "Field": "marketplace", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -92512,13 +93371,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "orderid", - "Non_unique": "1", - "columns": "orderid" + "columns": [ + "orderid" + ] } ] }, @@ -92532,7 +93393,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92540,7 +93401,7 @@ { "Field": "apifunktion", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -92551,10 +93412,10 @@ { "Field": "shop", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92562,10 +93423,10 @@ { "Field": "typ", "Type": "varchar(50)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92576,7 +93437,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92587,7 +93448,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92598,7 +93459,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92609,7 +93470,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92620,7 +93481,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92631,7 +93492,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92642,7 +93503,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92653,7 +93514,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92664,7 +93525,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92675,7 +93536,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92697,7 +93558,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92717,13 +93578,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shopid", - "Non_unique": "1", - "columns": "shopid" + "columns": [ + "shopid" + ] } ] }, @@ -92737,7 +93600,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92756,7 +93619,7 @@ { "Field": "extid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -92767,10 +93630,10 @@ { "Field": "sessionid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92778,10 +93641,10 @@ { "Field": "warenkorb", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92792,7 +93655,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92803,7 +93666,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92814,7 +93677,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92822,10 +93685,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92836,7 +93699,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92844,10 +93707,10 @@ { "Field": "bestellnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92867,8 +93730,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -92882,7 +93746,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92912,10 +93776,10 @@ { "Field": "ext_order", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92934,10 +93798,10 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "unpaid", + "Default": "'unpaid'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92968,8 +93832,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -92983,7 +93848,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -93024,7 +93889,7 @@ { "Field": "marketplace", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -93035,7 +93900,7 @@ { "Field": "title", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -93046,7 +93911,7 @@ { "Field": "merchantgroup", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -93057,10 +93922,10 @@ { "Field": "condition", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "New", + "Default": "'new'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93068,7 +93933,7 @@ { "Field": "sku", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -93079,7 +93944,7 @@ { "Field": "asin", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -93090,7 +93955,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -93101,7 +93966,7 @@ { "Field": "currency", "Type": "varchar(4)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -93167,7 +94032,7 @@ { "Field": "feed_submission_id", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -93178,7 +94043,7 @@ { "Field": "feed_submission_id_price", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -93189,7 +94054,7 @@ { "Field": "feed_submission_id_storage", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -93200,7 +94065,7 @@ { "Field": "feed_submission_id_flat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -93211,7 +94076,7 @@ { "Field": "error_code", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -93222,7 +94087,7 @@ { "Field": "error_message", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -93234,28 +94099,33 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id" + ] }, { "Key_name": "article_id", - "Non_unique": "1", - "columns": "article_id" + "columns": [ + "article_id" + ] }, { "Key_name": "sku", - "Non_unique": "1", - "columns": "sku" + "columns": [ + "sku" + ] }, { "Key_name": "asin", - "Non_unique": "1", - "columns": "asin" + "columns": [ + "asin" + ] } ] }, @@ -93269,7 +94139,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -93277,7 +94147,7 @@ { "Field": "browsenodeid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "MUL", "Default": "", @@ -93288,7 +94158,7 @@ { "Field": "marketplace", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -93310,7 +94180,7 @@ { "Field": "browseNodename", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -93321,7 +94191,7 @@ { "Field": "browseNodestorecontextname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -93332,7 +94202,7 @@ { "Field": "browsepathbyid", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -93343,7 +94213,7 @@ { "Field": "browsepathbyname", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -93365,7 +94235,7 @@ { "Field": "producttypedefinitions", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -93410,18 +94280,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "browsenodeid", - "Non_unique": "1", - "columns": "browsenodeid" + "columns": [ + "browsenodeid" + ] }, { "Key_name": "parent_id", - "Non_unique": "1", - "columns": "parent_id" + "columns": [ + "parent_id" + ] } ] }, @@ -93435,7 +94308,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -93443,7 +94316,7 @@ { "Field": "root_node", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -93454,7 +94327,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "MUL", "Default": "", @@ -93465,7 +94338,7 @@ { "Field": "node_de", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "MUL", "Default": "", @@ -93476,7 +94349,7 @@ { "Field": "node_uk", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -93487,7 +94360,7 @@ { "Field": "node_fr", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -93498,7 +94371,7 @@ { "Field": "node_it", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -93509,7 +94382,7 @@ { "Field": "node_es", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -93521,18 +94394,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "name", - "Non_unique": "1", - "columns": "name" + "columns": [ + "name" + ] }, { "Key_name": "node_de", - "Non_unique": "1", - "columns": "node_de" + "columns": [ + "node_de" + ] } ] }, @@ -93546,7 +94422,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -93598,7 +94474,7 @@ { "Field": "adjustmentid", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -93621,18 +94497,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id" + ] }, { "Key_name": "creditnote_id", - "Non_unique": "1", - "columns": "creditnote_id" + "columns": [ + "creditnote_id" + ] } ] }, @@ -93646,7 +94525,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -93665,7 +94544,7 @@ { "Field": "feed_submission_id", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -93676,7 +94555,7 @@ { "Field": "feed_type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -93687,7 +94566,7 @@ { "Field": "feed_processing_status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -93698,7 +94577,7 @@ { "Field": "parameter", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -93712,7 +94591,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93723,7 +94602,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93734,7 +94613,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93745,7 +94624,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93754,13 +94633,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "0", - "columns": "shop_id" + "columns": [ + "shop_id", + "feed_submission_id" + ] } ] }, @@ -93774,7 +94656,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -93815,7 +94697,7 @@ { "Field": "sku", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -93826,7 +94708,7 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -93837,7 +94719,7 @@ { "Field": "marketplace", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -93848,7 +94730,7 @@ { "Field": "feedsubmissionid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -93859,10 +94741,10 @@ { "Field": "error_message", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93882,13 +94764,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id" + ] } ] }, @@ -93902,7 +94786,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -93932,7 +94816,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -93943,7 +94827,7 @@ { "Field": "url", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -93966,18 +94850,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shopimporter_amazon_flatfile_article_id", - "Non_unique": "1", - "columns": "shopimporter_amazon_flatfile_article_id" + "columns": [ + "shopimporter_amazon_flatfile_article_id" + ] }, { "Key_name": "file_id", - "Non_unique": "1", - "columns": "file_id" + "columns": [ + "file_id" + ] } ] }, @@ -93991,7 +94878,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94010,7 +94897,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94021,7 +94908,7 @@ { "Field": "value", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94033,13 +94920,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shopimporter_amazon_flatfile_article_id", - "Non_unique": "1", - "columns": "shopimporter_amazon_flatfile_article_id" + "columns": [ + "shopimporter_amazon_flatfile_article_id" + ] } ] }, @@ -94053,7 +94942,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94061,7 +94950,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "UNI", "Default": "", @@ -94072,7 +94961,7 @@ { "Field": "country", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94083,10 +94972,10 @@ { "Field": "csv", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94094,10 +94983,10 @@ { "Field": "definitions_json", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94105,10 +94994,10 @@ { "Field": "requirements_json", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94116,10 +95005,10 @@ { "Field": "allowed_values_json", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94128,13 +95017,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "name", - "Non_unique": "0", - "columns": "name" + "columns": [ + "name" + ] } ] }, @@ -94148,7 +95039,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94156,10 +95047,10 @@ { "Field": "fieldname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "UNI", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94168,13 +95059,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "fieldname", - "Non_unique": "0", - "columns": "fieldname" + "columns": [ + "fieldname" + ] } ] }, @@ -94188,7 +95081,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94207,7 +95100,7 @@ { "Field": "orderid", "Type": "varchar(19)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -94218,7 +95111,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94229,7 +95122,7 @@ { "Field": "addressfieldone", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94240,7 +95133,7 @@ { "Field": "addressfieldtwo", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94251,7 +95144,7 @@ { "Field": "addressfieldthree", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94262,7 +95155,7 @@ { "Field": "city", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94273,7 +95166,7 @@ { "Field": "region", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94284,7 +95177,7 @@ { "Field": "postalcode", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94295,7 +95188,7 @@ { "Field": "countrycode", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94306,7 +95199,7 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94317,7 +95210,7 @@ { "Field": "phonenumber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94329,13 +95222,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "orderid", - "Non_unique": "1", - "columns": "orderid" + "columns": [ + "orderid" + ] } ] }, @@ -94349,7 +95244,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94412,7 +95307,7 @@ { "Field": "orderid", "Type": "varchar(19)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -94423,7 +95318,7 @@ { "Field": "shippingid", "Type": "varchar(19)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94456,7 +95351,7 @@ { "Field": "report", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94467,7 +95362,7 @@ { "Field": "marketplace", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94478,7 +95373,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94489,7 +95384,7 @@ { "Field": "error_code", "Type": "varchar(5)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94500,10 +95395,10 @@ { "Field": "error_message", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94511,7 +95406,7 @@ { "Field": "invoice_number", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94544,7 +95439,7 @@ { "Field": "transaction_id", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94567,18 +95462,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id" + ] }, { "Key_name": "orderid", - "Non_unique": "1", - "columns": "orderid" + "columns": [ + "orderid" + ] } ] }, @@ -94592,7 +95490,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94611,7 +95509,7 @@ { "Field": "marketplace_request", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94625,7 +95523,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94636,7 +95534,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94644,7 +95542,7 @@ { "Field": "seller_sku", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -94655,7 +95553,7 @@ { "Field": "item_name", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94677,7 +95575,7 @@ { "Field": "listing_id", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94688,10 +95586,10 @@ { "Field": "item_description", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94702,7 +95600,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94713,7 +95611,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94724,7 +95622,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94732,7 +95630,7 @@ { "Field": "image_url", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94743,7 +95641,7 @@ { "Field": "item_is_marketplace", "Type": "varchar(1)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94757,7 +95655,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94768,7 +95666,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94776,7 +95674,7 @@ { "Field": "item_note", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94790,7 +95688,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94798,7 +95696,7 @@ { "Field": "zshop_category1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94809,7 +95707,7 @@ { "Field": "zshop_browse_path", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94820,7 +95718,7 @@ { "Field": "zshop_storefron_feature", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94831,7 +95729,7 @@ { "Field": "asin", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94842,7 +95740,7 @@ { "Field": "asin2", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94853,7 +95751,7 @@ { "Field": "asin3", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94864,7 +95762,7 @@ { "Field": "will_ship_internationally", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94875,7 +95773,7 @@ { "Field": "expedited_shipping", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94886,7 +95784,7 @@ { "Field": "zshop_boldface", "Type": "varchar(1)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94897,7 +95795,7 @@ { "Field": "product_id", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94908,7 +95806,7 @@ { "Field": "bid_for_fetatured_placement", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94919,7 +95817,7 @@ { "Field": "add_delete", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94933,7 +95831,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94941,7 +95839,7 @@ { "Field": "fulfillment_channel", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94955,7 +95853,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94963,7 +95861,7 @@ { "Field": "quantity_price_type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -94977,7 +95875,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94988,7 +95886,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94999,7 +95897,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95010,7 +95908,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95021,7 +95919,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95032,7 +95930,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95043,7 +95941,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95054,7 +95952,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95065,7 +95963,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95076,7 +95974,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95084,7 +95982,7 @@ { "Field": "merchant_shipping_group", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -95095,7 +95993,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -95120,7 +96018,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95140,18 +96038,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "article_id", - "Non_unique": "1", - "columns": "article_id" + "columns": [ + "article_id" + ] }, { "Key_name": "seller_sku", - "Non_unique": "1", - "columns": "seller_sku" + "columns": [ + "seller_sku" + ] } ] }, @@ -95165,7 +96066,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95184,7 +96085,7 @@ { "Field": "groupname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -95207,13 +96108,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id" + ] } ] }, @@ -95227,7 +96130,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95246,7 +96149,7 @@ { "Field": "orderid", "Type": "varchar(19)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -95257,7 +96160,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -95280,13 +96183,17 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "0", - "columns": "shop_id" + "columns": [ + "shop_id", + "orderid", + "status" + ] } ] }, @@ -95300,7 +96207,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95330,7 +96237,7 @@ { "Field": "submitfeedid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -95341,7 +96248,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -95364,18 +96271,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id" + ] }, { "Key_name": "status", - "Non_unique": "1", - "columns": "status" + "columns": [ + "status" + ] } ] }, @@ -95389,7 +96299,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95408,7 +96318,7 @@ { "Field": "orderid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "MUL", "Default": "", @@ -95464,13 +96374,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "orderid", - "Non_unique": "1", - "columns": "orderid" + "columns": [ + "orderid" + ] } ] }, @@ -95484,7 +96396,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95503,7 +96415,7 @@ { "Field": "recommendationtype", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -95514,7 +96426,7 @@ { "Field": "itemname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -95525,7 +96437,7 @@ { "Field": "defectgroup", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -95536,7 +96448,7 @@ { "Field": "recommendationid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "MUL", "Default": "", @@ -95547,7 +96459,7 @@ { "Field": "recommendationreason", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -95558,7 +96470,7 @@ { "Field": "defectattribute", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -95569,7 +96481,7 @@ { "Field": "asin", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -95580,7 +96492,7 @@ { "Field": "sku", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -95603,18 +96515,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id" + ] }, { "Key_name": "recommendationid", - "Non_unique": "1", - "columns": "recommendationid" + "columns": [ + "recommendationid" + ] } ] }, @@ -95628,7 +96543,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95650,7 +96565,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95669,7 +96584,7 @@ { "Field": "marketplace_request", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -95680,7 +96595,7 @@ { "Field": "report_type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -95691,7 +96606,7 @@ { "Field": "last_reportrequestid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -95702,7 +96617,7 @@ { "Field": "last_generatedreportid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -95713,7 +96628,7 @@ { "Field": "last_report_status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -95736,13 +96651,17 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id", + "report_type", + "marketplace_request" + ] } ] }, @@ -95756,7 +96675,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95775,7 +96694,7 @@ { "Field": "type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -95786,7 +96705,7 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -95797,7 +96716,7 @@ { "Field": "parameter", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -95808,7 +96727,7 @@ { "Field": "parameter2", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -95819,7 +96738,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "MUL", "Default": "", @@ -95841,10 +96760,10 @@ { "Field": "error", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95864,23 +96783,28 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "0", - "columns": "shop_id" + "columns": [ + "shop_id", + "type" + ] }, { "Key_name": "shopimporter_amazon_aufrufe_id", - "Non_unique": "1", - "columns": "shopimporter_amazon_aufrufe_id" + "columns": [ + "shopimporter_amazon_aufrufe_id" + ] }, { "Key_name": "status", - "Non_unique": "1", - "columns": "status" + "columns": [ + "status" + ] } ] }, @@ -95894,7 +96818,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95913,7 +96837,7 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -95936,18 +96860,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id" + ] }, { "Key_name": "updated_at", - "Non_unique": "1", - "columns": "updated_at" + "columns": [ + "updated_at" + ] } ] }, @@ -95961,7 +96888,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95980,7 +96907,7 @@ { "Field": "marketplace_request", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -95994,7 +96921,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96002,7 +96929,7 @@ { "Field": "sku", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96013,7 +96940,7 @@ { "Field": "fnsku", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96024,7 +96951,7 @@ { "Field": "asin", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96035,7 +96962,7 @@ { "Field": "protuct_name", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96046,7 +96973,7 @@ { "Field": "enrolled_in_snl", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96057,7 +96984,7 @@ { "Field": "marketplace", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96071,7 +96998,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96082,7 +97009,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96093,7 +97020,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96102,13 +97029,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id" + ] } ] }, @@ -96122,7 +97051,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96141,7 +97070,7 @@ { "Field": "type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96152,10 +97081,10 @@ { "Field": "token", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96175,13 +97104,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "article_id", - "Non_unique": "1", - "columns": "article_id" + "Key_name": "shop_id", + "columns": [ + "shop_id", + "type" + ] } ] }, @@ -96195,7 +97127,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96203,7 +97135,7 @@ { "Field": "parent_name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96214,7 +97146,7 @@ { "Field": "direct_parent", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96225,7 +97157,7 @@ { "Field": "element_name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -96236,7 +97168,7 @@ { "Field": "element_value", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96247,7 +97179,7 @@ { "Field": "enumeration_type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -96258,7 +97190,7 @@ { "Field": "restriction", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96269,7 +97201,7 @@ { "Field": "file", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96292,18 +97224,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "enumeration_type", - "Non_unique": "1", - "columns": "enumeration_type" + "columns": [ + "enumeration_type" + ] }, { "Key_name": "element_name", - "Non_unique": "1", - "columns": "element_name" + "columns": [ + "element_name" + ] } ] }, @@ -96317,7 +97252,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96336,7 +97271,7 @@ { "Field": "extid", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -96358,7 +97293,7 @@ { "Field": "bearbeiter", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96380,7 +97315,7 @@ { "Field": "transaction_id", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96391,7 +97326,7 @@ { "Field": "zahlungsweise", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96403,18 +97338,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop", - "Non_unique": "1", - "columns": "shop" + "columns": [ + "shop" + ] }, { "Key_name": "extid", - "Non_unique": "1", - "columns": "extid" + "columns": [ + "extid" + ] } ] }, @@ -96428,7 +97366,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96436,10 +97374,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96450,7 +97388,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96461,7 +97399,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96469,10 +97407,10 @@ { "Field": "bezeichnung_en", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96480,10 +97418,10 @@ { "Field": "plugin", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96491,10 +97429,10 @@ { "Field": "pluginparameter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96505,7 +97443,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96513,10 +97451,10 @@ { "Field": "target", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96525,8 +97463,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -96540,7 +97479,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96551,7 +97490,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96562,7 +97501,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96573,7 +97512,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96581,10 +97520,10 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96592,7 +97531,7 @@ { "Field": "trackingnumber", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96603,7 +97542,7 @@ { "Field": "quality", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96615,8 +97554,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -96630,7 +97570,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96638,10 +97578,10 @@ { "Field": "address_id", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96649,10 +97589,10 @@ { "Field": "contact_list", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96660,10 +97600,10 @@ { "Field": "firstName", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96671,10 +97611,10 @@ { "Field": "lastName", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96682,10 +97622,10 @@ { "Field": "phone", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96693,10 +97633,10 @@ { "Field": "email", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96704,10 +97644,10 @@ { "Field": "city", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96715,10 +97655,10 @@ { "Field": "website", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96726,10 +97666,10 @@ { "Field": "zip", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96748,10 +97688,10 @@ { "Field": "snap_created", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96759,10 +97699,10 @@ { "Field": "snap_hash", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "UNI", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96770,10 +97710,10 @@ { "Field": "address", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96782,13 +97722,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "snap_hash", - "Non_unique": "0", - "columns": "snap_hash" + "columns": [ + "snap_hash" + ] } ] }, @@ -96802,7 +97744,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96810,10 +97752,10 @@ { "Field": "lvl", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96821,10 +97763,10 @@ { "Field": "msg", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96844,8 +97786,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -96859,7 +97802,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96867,10 +97810,10 @@ { "Field": "iso", "Type": "varchar(2)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96878,7 +97821,7 @@ { "Field": "bezeichnung_de", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96889,7 +97832,7 @@ { "Field": "bezeichnung_en", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96900,7 +97843,7 @@ { "Field": "alias", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96923,8 +97866,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -96938,7 +97882,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96949,7 +97893,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96968,7 +97912,7 @@ { "Field": "reference", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -96979,10 +97923,10 @@ { "Field": "type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97002,13 +97946,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id" + ] } ] }, @@ -97022,7 +97968,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97030,10 +97976,10 @@ { "Field": "order_reference", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97041,10 +97987,10 @@ { "Field": "order_shipment", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97055,7 +98001,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97064,18 +98010,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "order_reference", - "Non_unique": "1", - "columns": "order_reference" + "columns": [ + "order_reference" + ] }, { "Key_name": "order_shipment", - "Non_unique": "1", - "columns": "order_shipment" + "columns": [ + "order_shipment" + ] } ] }, @@ -97089,7 +98038,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97100,7 +98049,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97108,10 +98057,10 @@ { "Field": "order_reference", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97119,10 +98068,10 @@ { "Field": "shipment_id", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97130,10 +98079,10 @@ { "Field": "order_item_reference", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97153,13 +98102,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "shop_id", - "Non_unique": "1", - "columns": "shop_id" + "columns": [ + "shop_id" + ] } ] }, @@ -97173,7 +98124,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97181,10 +98132,10 @@ { "Field": "abfrage", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97192,10 +98143,10 @@ { "Field": "ergebnis", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97203,7 +98154,7 @@ { "Field": "shortcode", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -97237,8 +98188,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -97252,7 +98204,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97260,10 +98212,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97271,10 +98223,10 @@ { "Field": "description", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97337,7 +98289,7 @@ { "Field": "color", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -97349,8 +98301,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -97364,7 +98317,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97375,7 +98328,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97427,7 +98380,7 @@ { "Field": "status", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -97450,13 +98403,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "datum", - "Non_unique": "1", - "columns": "datum" + "columns": [ + "datum" + ] } ] }, @@ -97470,7 +98425,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97478,7 +98433,7 @@ { "Field": "url", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -97545,8 +98500,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -97560,7 +98516,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97568,7 +98524,7 @@ { "Field": "bezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -97601,7 +98557,7 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -97637,7 +98593,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97648,7 +98604,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97656,7 +98612,7 @@ { "Field": "type", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -97667,7 +98623,7 @@ { "Field": "country_code", "Type": "varchar(8)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -97690,8 +98646,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -97705,7 +98662,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97813,13 +98770,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "index_identifier", - "Non_unique": "0", - "columns": "index_name" + "Key_name": "article_id", + "columns": [ + "article_id", + "is_replenishment" + ] } ] }, @@ -97833,7 +98793,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97844,7 +98804,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97855,7 +98815,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97863,10 +98823,10 @@ { "Field": "referenz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97874,10 +98834,10 @@ { "Field": "place", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97885,10 +98845,10 @@ { "Field": "layer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97899,7 +98859,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97921,7 +98881,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97929,10 +98889,10 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97940,10 +98900,10 @@ { "Field": "bauform", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97962,7 +98922,7 @@ { "Field": "zachse", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -97973,7 +98933,7 @@ { "Field": "xpos", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -97984,7 +98944,7 @@ { "Field": "ypos", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -97995,7 +98955,7 @@ { "Field": "art", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -98007,13 +98967,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "stuecklistevonartikel", - "Non_unique": "1", - "columns": "stuecklistevonartikel" + "columns": [ + "stuecklistevonartikel" + ] } ] }, @@ -98027,7 +98989,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98038,7 +99000,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98049,7 +99011,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98057,10 +99019,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98071,7 +99033,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98082,7 +99044,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98091,8 +99053,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -98106,7 +99069,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98114,10 +99077,10 @@ { "Field": "name", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "UNI", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98125,10 +99088,10 @@ { "Field": "title", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98136,10 +99099,10 @@ { "Field": "module", "Type": "varchar(38)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98161,7 +99124,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98172,7 +99135,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98181,13 +99144,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "name", - "Non_unique": "0", - "columns": "name" + "columns": [ + "name" + ] } ] }, @@ -98201,7 +99166,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98209,10 +99174,10 @@ { "Field": "index_name", "Type": "varchar(16)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98220,10 +99185,10 @@ { "Field": "index_id", "Type": "varchar(38)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98242,10 +99207,10 @@ { "Field": "title", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98253,10 +99218,10 @@ { "Field": "subtitle", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98264,10 +99229,10 @@ { "Field": "additional_infos", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98275,10 +99240,10 @@ { "Field": "link", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98286,10 +99251,10 @@ { "Field": "search_words", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98322,7 +99287,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98331,23 +99296,28 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "system_pkey", - "Non_unique": "1", - "columns": "id" + "Key_name": "index_identifier", + "columns": [ + "index_name", + "index_id" + ] }, { "Key_name": "project_id", - "Non_unique": "1", - "columns": "project_id" + "columns": [ + "project_id" + ] }, { "Key_name": "FullText", - "Non_unique": "1", - "columns": "search_words" + "columns": [ + "search_words" + ] } ] }, @@ -98361,7 +99331,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98394,7 +99364,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98413,10 +99383,10 @@ { "Field": "version", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98424,10 +99394,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98435,7 +99405,7 @@ { "Field": "status", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -98446,7 +99416,7 @@ { "Field": "phase", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -98469,8 +99439,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -98484,7 +99455,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98515,8 +99486,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -98530,7 +99502,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98541,7 +99513,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98552,7 +99524,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98563,7 +99535,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98574,7 +99546,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98594,8 +99566,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -98609,7 +99582,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98620,7 +99593,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98628,7 +99601,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -98651,8 +99624,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -98666,7 +99640,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98699,7 +99673,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98707,7 +99681,7 @@ { "Field": "details", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -98719,8 +99693,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -98734,7 +99709,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98742,10 +99717,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98764,10 +99739,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98820,8 +99795,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -98835,7 +99811,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98843,7 +99819,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -98854,7 +99830,7 @@ { "Field": "taetigkeit", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -98865,10 +99841,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98877,8 +99853,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -98892,7 +99869,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98900,7 +99877,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -98933,7 +99910,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -98944,7 +99921,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -98956,8 +99933,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -98971,7 +99949,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99001,10 +99979,10 @@ { "Field": "data", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99024,18 +100002,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "survey_id", - "Non_unique": "1", - "columns": "survey_id" + "columns": [ + "survey_id" + ] }, { "Key_name": "user_id", - "Non_unique": "1", - "columns": "user_id" + "columns": [ + "user_id" + ] } ] }, @@ -99049,7 +100030,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99060,7 +100041,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99071,7 +100052,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99082,7 +100063,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99093,7 +100074,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99113,13 +100094,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "created_at", - "Non_unique": "1", - "columns": "created_at" + "columns": [ + "created_at" + ] } ] }, @@ -99133,7 +100116,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99152,7 +100135,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -99163,7 +100146,7 @@ { "Field": "description", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99174,7 +100157,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99185,7 +100168,7 @@ { "Field": "message", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99210,7 +100193,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99232,7 +100215,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99241,18 +100224,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "systemhealth_category_id", - "Non_unique": "1", - "columns": "systemhealth_category_id" + "columns": [ + "systemhealth_category_id" + ] }, { "Key_name": "name", - "Non_unique": "1", - "columns": "name" + "columns": [ + "name" + ] } ] }, @@ -99266,7 +100252,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99274,7 +100260,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -99285,10 +100271,10 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99308,13 +100294,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "name", - "Non_unique": "1", - "columns": "name" + "columns": [ + "name" + ] } ] }, @@ -99328,7 +100316,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99347,7 +100335,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99359,13 +100347,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "systemhealth_id", - "Non_unique": "1", - "columns": "systemhealth_id" + "columns": [ + "systemhealth_id" + ] } ] }, @@ -99379,7 +100369,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99409,7 +100399,7 @@ { "Field": "doctype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99431,7 +100421,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99442,7 +100432,7 @@ { "Field": "message", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99454,18 +100444,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "systemhealth_id", - "Non_unique": "1", - "columns": "systemhealth_id" + "columns": [ + "systemhealth_id" + ] }, { "Key_name": "created_at", - "Non_unique": "1", - "columns": "created_at" + "columns": [ + "created_at" + ] } ] }, @@ -99479,7 +100472,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99487,7 +100480,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99498,7 +100491,7 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99510,8 +100503,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -99525,7 +100519,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99555,7 +100549,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99566,7 +100560,7 @@ { "Field": "email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99578,8 +100572,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -99593,7 +100588,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99601,10 +100596,10 @@ { "Field": "meldung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99612,10 +100607,10 @@ { "Field": "dump", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99623,7 +100618,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99634,7 +100629,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99645,7 +100640,7 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99656,7 +100651,7 @@ { "Field": "funktionsname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99670,7 +100665,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99689,10 +100684,10 @@ { "Field": "argumente", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99712,8 +100707,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -99727,7 +100723,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99735,7 +100731,7 @@ { "Field": "filename", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99746,7 +100742,7 @@ { "Field": "footer_icons", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99757,7 +100753,7 @@ { "Field": "category", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99768,7 +100764,7 @@ { "Field": "title", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -99779,10 +100775,10 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99813,13 +100809,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "FullText", - "Non_unique": "1", - "columns": "betreff" + "Key_name": "system_pkey", + "columns": [ + "id", + "hidden" + ] } ] }, @@ -99833,7 +100832,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99844,7 +100843,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99855,7 +100854,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99864,13 +100863,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "task_id", - "Non_unique": "1", - "columns": "task_id" + "columns": [ + "task_id" + ] } ] }, @@ -99884,7 +100885,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99895,7 +100896,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99906,7 +100907,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99925,10 +100926,10 @@ { "Field": "content", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99937,13 +100938,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "task_id", - "Non_unique": "1", - "columns": "task_id" + "columns": [ + "task_id" + ] } ] }, @@ -99957,7 +100960,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99998,7 +101001,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -100032,8 +101035,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -100047,7 +101051,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100058,7 +101062,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100069,7 +101073,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100088,10 +101092,10 @@ { "Field": "adressetext", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100099,10 +101103,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100143,10 +101147,10 @@ { "Field": "telefonnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100154,10 +101158,10 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100177,13 +101181,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "rueckrufvon", - "Non_unique": "1", - "columns": "rueckrufvon" + "columns": [ + "rueckrufvon" + ] } ] }, @@ -100197,7 +101203,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100219,7 +101225,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100230,7 +101236,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100249,10 +101255,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100261,13 +101267,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "telefonrueckruf", - "Non_unique": "1", - "columns": "telefonrueckruf" + "columns": [ + "telefonrueckruf" + ] } ] }, @@ -100281,7 +101289,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100300,10 +101308,10 @@ { "Field": "message", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100323,13 +101331,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "user", - "Non_unique": "1", - "columns": "user" + "columns": [ + "user" + ] } ] }, @@ -100343,7 +101353,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100351,10 +101361,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100362,10 +101372,10 @@ { "Field": "text", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100373,10 +101383,10 @@ { "Field": "stichwoerter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100384,10 +101394,10 @@ { "Field": "projekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100396,8 +101406,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -100411,7 +101422,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100419,10 +101430,10 @@ { "Field": "schluessel", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100441,10 +101452,10 @@ { "Field": "projekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100452,10 +101463,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100463,10 +101474,10 @@ { "Field": "quelle", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100474,10 +101485,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100488,7 +101499,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100496,10 +101507,10 @@ { "Field": "kunde", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100507,10 +101518,10 @@ { "Field": "warteschlange", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100518,10 +101529,10 @@ { "Field": "mailadresse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100532,7 +101543,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100540,10 +101551,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100554,7 +101565,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100565,7 +101576,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100573,10 +101584,10 @@ { "Field": "inbearbeitung_user", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100587,7 +101598,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100595,10 +101606,10 @@ { "Field": "notiz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100628,10 +101639,10 @@ { "Field": "kommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100661,10 +101672,10 @@ { "Field": "tags", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100675,7 +101686,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100684,28 +101695,33 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "schluessel", - "Non_unique": "1", - "columns": "schluessel" + "columns": [ + "schluessel" + ] }, { "Key_name": "service", - "Non_unique": "1", - "columns": "service" + "columns": [ + "service" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] }, { "Key_name": "warteschlange", - "Non_unique": "1", - "columns": "warteschlange" + "columns": [ + "warteschlange" + ] } ] }, @@ -100719,7 +101735,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100727,7 +101743,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -100772,8 +101788,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -100787,7 +101804,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100798,7 +101815,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100806,10 +101823,10 @@ { "Field": "type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100817,10 +101834,10 @@ { "Field": "value", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100829,8 +101846,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -100844,7 +101862,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100852,10 +101870,10 @@ { "Field": "ticket", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100863,10 +101881,10 @@ { "Field": "verfasser", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100874,7 +101892,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -100885,10 +101903,10 @@ { "Field": "mail", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100899,7 +101917,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100910,7 +101928,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100918,10 +101936,10 @@ { "Field": "text", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100929,10 +101947,10 @@ { "Field": "textausgang", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100940,10 +101958,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100951,10 +101969,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "''", + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100962,10 +101980,10 @@ { "Field": "medium", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100973,7 +101991,7 @@ { "Field": "versendet", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -100984,10 +102002,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100995,7 +102013,7 @@ { "Field": "mail_cc", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101006,10 +102024,10 @@ { "Field": "verfasser_replyto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101017,10 +102035,10 @@ { "Field": "mail_replyto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101029,18 +102047,24 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "ticket", - "Non_unique": "1", - "columns": "ticket" + "columns": [ + "ticket" + ] }, { - "Key_name": "uebertragungen_account", - "Non_unique": "1", - "columns": "uebertragungen_account" + "Key_name": "FullText", + "Index_type": "FULLTEXT", + "columns": [ + "betreff", + "verfasser", + "text" + ] } ] }, @@ -101054,7 +102078,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101062,10 +102086,10 @@ { "Field": "empfaenger_email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101073,10 +102097,10 @@ { "Field": "sender_email", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101084,10 +102108,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101095,10 +102119,10 @@ { "Field": "betreff", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101150,10 +102174,10 @@ { "Field": "warteschlange", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101173,8 +102197,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -101188,7 +102213,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101199,7 +102224,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101207,10 +102232,10 @@ { "Field": "vorlagenname", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101218,10 +102243,10 @@ { "Field": "vorlage", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101232,7 +102257,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101243,7 +102268,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101274,13 +102299,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "ticket_category_id", - "Non_unique": "1", - "columns": "ticket_category_id" + "columns": [ + "ticket_category_id" + ] } ] }, @@ -101294,7 +102321,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101313,7 +102340,7 @@ { "Field": "filter_type", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101325,8 +102352,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -101340,7 +102368,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101362,7 +102390,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101373,7 +102401,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101381,10 +102409,10 @@ { "Field": "status", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "created", + "Default": "'created'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101404,8 +102432,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -101419,7 +102448,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101427,7 +102456,7 @@ { "Field": "label", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -101438,10 +102467,10 @@ { "Field": "beschriftung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101449,7 +102478,7 @@ { "Field": "sprache", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -101460,10 +102489,10 @@ { "Field": "original", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101472,18 +102501,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "sprache", - "Non_unique": "1", - "columns": "sprache" + "columns": [ + "sprache" + ] }, { "Key_name": "label", - "Non_unique": "1", - "columns": "label" + "columns": [ + "label" + ] } ] }, @@ -101497,7 +102529,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101505,7 +102537,7 @@ { "Field": "bezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101516,7 +102548,7 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101549,7 +102581,7 @@ { "Field": "server", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101560,7 +102592,7 @@ { "Field": "port", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101571,7 +102603,7 @@ { "Field": "username", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101582,7 +102614,7 @@ { "Field": "passwort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101593,7 +102625,7 @@ { "Field": "parameter1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101604,7 +102636,7 @@ { "Field": "parameter2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101615,7 +102647,7 @@ { "Field": "parameter3", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101626,7 +102658,7 @@ { "Field": "parameter4", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101637,7 +102669,7 @@ { "Field": "authmethod", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101648,7 +102680,7 @@ { "Field": "publickeyfile", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101659,7 +102691,7 @@ { "Field": "privatekeyfile", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101670,10 +102702,10 @@ { "Field": "publickey", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101681,10 +102713,10 @@ { "Field": "privatekey", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101725,7 +102757,7 @@ { "Field": "bearbeiter", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101758,7 +102790,7 @@ { "Field": "letzter_status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101791,10 +102823,10 @@ { "Field": "xml_pdf", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "xml", + "Default": "'xml'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101802,7 +102834,7 @@ { "Field": "belegtyp", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101813,7 +102845,7 @@ { "Field": "documenttype_incoming", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101824,7 +102856,7 @@ { "Field": "belegstatus", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -101879,10 +102911,10 @@ { "Field": "emailbody", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101901,10 +102933,10 @@ { "Field": "xml_zusatz", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101989,7 +103021,7 @@ { "Field": "csv_codierung", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -102000,7 +103032,7 @@ { "Field": "csv_trennzeichen", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -102011,10 +103043,10 @@ { "Field": "csv_tracking", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102022,10 +103054,10 @@ { "Field": "csv_lagerzahl", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102033,10 +103065,10 @@ { "Field": "csv_lieferschein", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102044,10 +103076,10 @@ { "Field": "csv_auftrag", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102055,10 +103087,10 @@ { "Field": "csv_bestellung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102091,7 +103123,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102102,7 +103134,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102113,7 +103145,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102124,7 +103156,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102135,7 +103167,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102286,10 +103318,10 @@ { "Field": "dateianhangtyp", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "datei", + "Default": "'datei'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102297,10 +103329,10 @@ { "Field": "csvheader_lagerzahlen", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102308,10 +103340,10 @@ { "Field": "csvheader_tracking", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102374,10 +103406,10 @@ { "Field": "einstellungen_json", "Type": "mediumtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102418,7 +103450,7 @@ { "Field": "sales_report_type", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -102484,10 +103516,10 @@ { "Field": "csvseparator", "Type": "varchar(4)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": ";", + "Default": "';'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102495,7 +103527,7 @@ { "Field": "coding", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -102507,8 +103539,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -102522,7 +103555,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -102533,7 +103566,7 @@ "Collation": null, "Null": "NO", "Key": "UNI", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102541,10 +103574,10 @@ { "Field": "client_id", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102552,10 +103585,10 @@ { "Field": "client_secret", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102563,10 +103596,10 @@ { "Field": "url", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102574,10 +103607,10 @@ { "Field": "access_token", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102588,7 +103621,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102597,13 +103630,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "uebertragungen_account_id", - "Non_unique": "0", - "columns": "uebertragungen_account_id" + "columns": [ + "uebertragungen_account_id" + ] } ] }, @@ -102617,7 +103652,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -102647,7 +103682,7 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -102658,7 +103693,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -102681,13 +103716,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "uebertragung_account", - "Non_unique": "1", - "columns": "uebertragung_account" + "Key_name": "uebertragungen_account", + "columns": [ + "uebertragungen_account", + "artikel" + ] } ] }, @@ -102701,7 +103739,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -102720,7 +103758,7 @@ { "Field": "datei", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -102731,7 +103769,7 @@ { "Field": "datei_wawi", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -102742,7 +103780,7 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -102809,13 +103847,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "uebertragung_account", - "Non_unique": "1", - "columns": "uebertragung_account" + "columns": [ + "uebertragung_account", + "datei" + ] } ] }, @@ -102829,7 +103870,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -102848,7 +103889,7 @@ { "Field": "eventname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -102859,7 +103900,7 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -102870,7 +103911,7 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -102881,7 +103922,7 @@ { "Field": "parameter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -102914,7 +103955,7 @@ { "Field": "kommentar", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -102926,13 +103967,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "uebertragung_account", - "Non_unique": "1", - "columns": "uebertragung_account" + "columns": [ + "uebertragung_account" + ] } ] }, @@ -102946,7 +103989,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -102965,7 +104008,7 @@ { "Field": "eventname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -102999,13 +104042,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "uebertragungen_account", - "Non_unique": "1", - "columns": "uebertragungen_account" + "Key_name": "uebertragung_account", + "columns": [ + "uebertragung_account", + "eventname" + ] } ] }, @@ -103019,7 +104065,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103038,7 +104084,7 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103049,7 +104095,7 @@ { "Field": "datei", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103060,7 +104106,7 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103071,7 +104117,7 @@ { "Field": "parameter1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103082,7 +104128,7 @@ { "Field": "parameter2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103093,10 +104139,10 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103116,8 +104162,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -103131,7 +104178,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103142,7 +104189,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103153,7 +104200,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103175,7 +104222,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103184,8 +104231,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -103199,7 +104247,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103218,7 +104266,7 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103229,7 +104277,7 @@ { "Field": "datei", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103240,7 +104288,7 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103251,7 +104299,7 @@ { "Field": "parameter1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103262,7 +104310,7 @@ { "Field": "parameter2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103273,10 +104321,10 @@ { "Field": "wert", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103296,13 +104344,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "uebertragungen_account", - "Non_unique": "1", - "columns": "uebertragungen_account" + "columns": [ + "uebertragungen_account" + ] } ] }, @@ -103316,7 +104366,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103357,7 +104407,7 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103368,7 +104418,7 @@ { "Field": "nachricht", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103379,7 +104429,7 @@ { "Field": "element1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103390,7 +104440,7 @@ { "Field": "element2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103401,7 +104451,7 @@ { "Field": "element3", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103423,7 +104473,7 @@ { "Field": "doctype", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103457,13 +104507,18 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "chart", - "Non_unique": "1", - "columns": "chart" + "Key_name": "uebertragungen_account", + "columns": [ + "uebertragungen_account", + "datei", + "api_request", + "doctypeid" + ] } ] }, @@ -103477,7 +104532,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103488,7 +104543,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103499,7 +104554,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103508,8 +104563,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -103523,7 +104579,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103553,7 +104609,7 @@ { "Field": "objekt", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103564,7 +104620,7 @@ { "Field": "belegnr", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103575,7 +104631,7 @@ { "Field": "kundennummer", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103586,7 +104642,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -103655,7 +104711,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103663,10 +104719,10 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "EUR", + "Default": "'eur'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103697,8 +104753,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -103712,7 +104769,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103723,7 +104780,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103731,10 +104788,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103742,10 +104799,10 @@ { "Field": "verantwortlicher", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103753,10 +104810,10 @@ { "Field": "aktiv", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103767,7 +104824,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103787,8 +104844,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -103802,7 +104860,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103821,10 +104879,10 @@ { "Field": "account_nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103832,10 +104890,10 @@ { "Field": "bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103866,8 +104924,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -103881,7 +104940,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103889,10 +104948,10 @@ { "Field": "username", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103900,10 +104959,10 @@ { "Field": "password", "Type": "varchar(255)", - "Collation": "utf8mb3_bin", + "Collation": "utf8_bin", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103914,7 +104973,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103922,10 +104981,10 @@ { "Field": "description", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103933,10 +104992,10 @@ { "Field": "settings", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103947,7 +105006,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103966,7 +105025,7 @@ { "Field": "type", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -103980,7 +105039,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103991,7 +105050,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104002,7 +105061,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104013,7 +105072,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104032,10 +105091,10 @@ { "Field": "startseite", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104046,7 +105105,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104054,10 +105113,10 @@ { "Field": "hwkey", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104068,7 +105127,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104076,10 +105135,10 @@ { "Field": "motppin", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104087,10 +105146,10 @@ { "Field": "motpsecret", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104098,10 +105157,10 @@ { "Field": "passwordmd5", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104112,7 +105171,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104153,7 +105212,7 @@ { "Field": "rfidtag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -104164,10 +105223,10 @@ { "Field": "vorlage", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104175,10 +105234,10 @@ { "Field": "kalender_passwort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104200,7 +105259,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104211,7 +105270,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104241,10 +105300,10 @@ { "Field": "internebezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104252,10 +105311,10 @@ { "Field": "hwdatablock", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104274,7 +105333,7 @@ { "Field": "passwordsha512", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -104285,7 +105344,7 @@ { "Field": "salt", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -104307,10 +105366,10 @@ { "Field": "sprachebevorzugen", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104318,7 +105377,7 @@ { "Field": "vergessencode", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -104332,7 +105391,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104351,7 +105410,7 @@ { "Field": "defaultcolor", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -104362,10 +105421,10 @@ { "Field": "passwordhash", "Type": "char(60)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104384,10 +105443,10 @@ { "Field": "docscan_passwort", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104406,7 +105465,7 @@ { "Field": "stechuhrdevice", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -104417,7 +105476,7 @@ { "Field": "role", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -104429,13 +105488,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -104449,7 +105510,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104460,7 +105521,7 @@ "Collation": null, "Null": "NO", "Key": "UNI", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104479,10 +105540,10 @@ { "Field": "secret", "Type": "varchar(100)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104513,13 +105574,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "user_id", - "Non_unique": "0", - "columns": "user_id" + "columns": [ + "user_id" + ] } ] }, @@ -104533,7 +105596,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104552,7 +105615,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -104563,10 +105626,10 @@ { "Field": "value", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104575,18 +105638,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "user", - "Non_unique": "1", - "columns": "user" + "columns": [ + "user" + ] }, { "Key_name": "name", - "Non_unique": "1", - "columns": "name" + "columns": [ + "name" + ] } ] }, @@ -104619,7 +105685,7 @@ { "Field": "sessionid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", "Default": "", @@ -104630,7 +105696,7 @@ { "Field": "ip", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -104664,8 +105730,9 @@ "keys": [ { "Key_name": "sessionid", - "Non_unique": "1", - "columns": "sessionid" + "columns": [ + "sessionid" + ] } ] }, @@ -104679,7 +105746,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104690,7 +105757,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104698,10 +105765,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104709,10 +105776,10 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104723,7 +105790,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104732,13 +105799,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "user", - "Non_unique": "1", - "columns": "user" + "columns": [ + "user" + ] } ] }, @@ -104752,7 +105821,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104760,10 +105829,10 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104771,10 +105840,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104783,8 +105852,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -104798,7 +105868,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104809,7 +105879,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104817,10 +105887,10 @@ { "Field": "module", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104828,10 +105898,10 @@ { "Field": "action", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104842,7 +105912,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104851,8 +105921,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -104866,7 +105937,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104874,10 +105945,10 @@ { "Field": "adresse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104885,10 +105956,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104896,10 +105967,10 @@ { "Field": "ustid", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104907,10 +105978,10 @@ { "Field": "land", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104918,10 +105989,10 @@ { "Field": "ort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104929,10 +106000,10 @@ { "Field": "plz", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104940,10 +106011,10 @@ { "Field": "rechtsform", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104951,10 +106022,10 @@ { "Field": "strasse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104962,10 +106033,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104976,7 +106047,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104987,7 +106058,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104995,10 +106066,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105009,7 +106080,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105031,7 +106102,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105040,8 +106111,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -105055,7 +106127,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -105066,7 +106138,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105077,7 +106149,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105085,10 +106157,10 @@ { "Field": "bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105096,10 +106168,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105110,7 +106182,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105118,7 +106190,7 @@ { "Field": "daten", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105130,8 +106202,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -105145,7 +106218,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -105153,10 +106226,10 @@ { "Field": "belegnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105164,10 +106237,10 @@ { "Field": "status_beleg", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105186,10 +106259,10 @@ { "Field": "rechnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105200,7 +106273,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105211,7 +106284,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105219,10 +106292,10 @@ { "Field": "umsatzsteuer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105230,10 +106303,10 @@ { "Field": "ustid", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105244,7 +106317,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105255,7 +106328,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105266,7 +106339,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105277,7 +106350,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105285,7 +106358,7 @@ { "Field": "steuersatzname3", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105296,7 +106369,7 @@ { "Field": "steuersatzname4", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105310,7 +106383,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105321,7 +106394,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105343,7 +106416,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105351,10 +106424,10 @@ { "Field": "freigabemitarbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105365,7 +106438,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105376,7 +106449,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105387,7 +106460,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105398,7 +106471,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105409,7 +106482,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105417,10 +106490,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105431,7 +106504,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105442,7 +106515,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105453,7 +106526,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105494,7 +106567,7 @@ { "Field": "bestellung1bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105516,7 +106589,7 @@ { "Field": "bestellung1kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105527,7 +106600,7 @@ { "Field": "bestellung1auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105560,7 +106633,7 @@ { "Field": "bestellung2bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105571,7 +106644,7 @@ { "Field": "bestellung2kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105582,7 +106655,7 @@ { "Field": "bestellung2auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105626,7 +106699,7 @@ { "Field": "bestellung3bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105637,7 +106710,7 @@ { "Field": "bestellung3kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105648,7 +106721,7 @@ { "Field": "bestellung3auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105692,7 +106765,7 @@ { "Field": "bestellung4bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105703,7 +106776,7 @@ { "Field": "bestellung4kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105714,7 +106787,7 @@ { "Field": "bestellung4auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105758,7 +106831,7 @@ { "Field": "bestellung5bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105769,7 +106842,7 @@ { "Field": "bestellung5kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105780,7 +106853,7 @@ { "Field": "bestellung5auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105824,7 +106897,7 @@ { "Field": "bestellung6bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105835,7 +106908,7 @@ { "Field": "bestellung6kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105846,7 +106919,7 @@ { "Field": "bestellung6auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105890,7 +106963,7 @@ { "Field": "bestellung7bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105901,7 +106974,7 @@ { "Field": "bestellung7kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105912,7 +106985,7 @@ { "Field": "bestellung7auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105956,7 +107029,7 @@ { "Field": "bestellung8bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105967,7 +107040,7 @@ { "Field": "bestellung8kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -105978,7 +107051,7 @@ { "Field": "bestellung8auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106022,7 +107095,7 @@ { "Field": "bestellung9bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106033,7 +107106,7 @@ { "Field": "bestellung9kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106044,7 +107117,7 @@ { "Field": "bestellung9auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106088,7 +107161,7 @@ { "Field": "bestellung10bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106099,7 +107172,7 @@ { "Field": "bestellung10kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106110,7 +107183,7 @@ { "Field": "bestellung10auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106154,7 +107227,7 @@ { "Field": "bestellung11bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106165,7 +107238,7 @@ { "Field": "bestellung11kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106176,7 +107249,7 @@ { "Field": "bestellung11auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106220,7 +107293,7 @@ { "Field": "bestellung12bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106242,7 +107315,7 @@ { "Field": "bestellung12kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106253,7 +107326,7 @@ { "Field": "bestellung12auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106286,7 +107359,7 @@ { "Field": "bestellung13bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106297,7 +107370,7 @@ { "Field": "bestellung13kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106308,7 +107381,7 @@ { "Field": "bestellung13auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106352,7 +107425,7 @@ { "Field": "bestellung14bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106363,7 +107436,7 @@ { "Field": "bestellung14kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106374,7 +107447,7 @@ { "Field": "bestellung14auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106418,7 +107491,7 @@ { "Field": "bestellung15bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106429,7 +107502,7 @@ { "Field": "bestellung15kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106440,7 +107513,7 @@ { "Field": "bestellung15auftrag", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106462,10 +107535,10 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "EUR", + "Default": "'eur'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106473,7 +107546,7 @@ { "Field": "zahlungsweise", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106487,7 +107560,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106495,7 +107568,7 @@ { "Field": "buha_konto1", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106506,7 +107579,7 @@ { "Field": "buha_belegfeld1", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106528,7 +107601,7 @@ { "Field": "buha_konto2", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106539,7 +107612,7 @@ { "Field": "buha_belegfeld2", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106561,7 +107634,7 @@ { "Field": "buha_konto3", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106572,7 +107645,7 @@ { "Field": "buha_belegfeld3", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106594,7 +107667,7 @@ { "Field": "buha_konto4", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106605,7 +107678,7 @@ { "Field": "buha_belegfeld4", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106627,7 +107700,7 @@ { "Field": "buha_konto5", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106638,7 +107711,7 @@ { "Field": "buha_belegfeld5", "Type": "varchar(200)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106663,7 +107736,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106682,10 +107755,10 @@ { "Field": "kostenstelle", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106693,10 +107766,10 @@ { "Field": "beschreibung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106704,10 +107777,10 @@ { "Field": "sachkonto", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106715,7 +107788,7 @@ { "Field": "art", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106726,10 +107799,10 @@ { "Field": "verwendungszweck", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106759,10 +107832,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106773,7 +107846,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106784,7 +107857,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106795,7 +107868,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106806,7 +107879,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106828,7 +107901,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106847,7 +107920,7 @@ { "Field": "klaergrund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106880,7 +107953,7 @@ { "Field": "sprache", "Type": "varchar(25)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -106892,18 +107965,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] }, { "Key_name": "bestellung", - "Non_unique": "1", - "columns": "bestellung" + "columns": [ + "bestellung" + ] } ] }, @@ -106917,7 +107993,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -107013,10 +108089,10 @@ { "Field": "bestellung_bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107025,13 +108101,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "verbindlichkeit", - "Non_unique": "1", - "columns": "verbindlichkeit" + "columns": [ + "verbindlichkeit" + ] } ] }, @@ -107045,7 +108123,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -107075,7 +108153,7 @@ { "Field": "belegfeld", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107086,7 +108164,7 @@ { "Field": "buchungstext", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107097,7 +108175,7 @@ { "Field": "gegenkonto", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107108,7 +108186,7 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107122,7 +108200,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107130,7 +108208,7 @@ { "Field": "kostenstelle", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107142,13 +108220,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "verbindlichkeit", - "Non_unique": "1", - "columns": "verbindlichkeit" + "columns": [ + "verbindlichkeit" + ] } ] }, @@ -107162,7 +108242,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -107181,7 +108261,7 @@ { "Field": "property", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107192,7 +108272,7 @@ { "Field": "search_term", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107203,10 +108283,10 @@ { "Field": "search_direction", "Type": "varchar(5)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "right", + "Default": "'right'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107215,8 +108295,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -107230,7 +108311,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -107293,7 +108374,7 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107304,7 +108385,7 @@ { "Field": "bestellnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107315,7 +108396,7 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107326,7 +108407,7 @@ { "Field": "einheit", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107337,7 +108418,7 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107348,7 +108429,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107359,7 +108440,7 @@ { "Field": "umsatzsteuer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107370,7 +108451,7 @@ { "Field": "status", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107381,10 +108462,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107395,7 +108476,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107406,7 +108487,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107414,10 +108495,10 @@ { "Field": "steuertext", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107425,7 +108506,7 @@ { "Field": "kostenstelle", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107459,13 +108540,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "verbindlichkeit", - "Non_unique": "1", - "columns": "verbindlichkeit" + "columns": [ + "verbindlichkeit" + ] } ] }, @@ -107479,7 +108562,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -107501,7 +108584,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107509,7 +108592,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107520,7 +108603,7 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107532,13 +108615,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "verbindlichkeit", - "Non_unique": "1", - "columns": "verbindlichkeit" + "columns": [ + "verbindlichkeit" + ] } ] }, @@ -107552,7 +108637,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -107563,7 +108648,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107582,10 +108667,10 @@ { "Field": "typ", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": "0", + "Default": "'0'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107593,7 +108678,7 @@ { "Field": "filter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107604,7 +108689,7 @@ { "Field": "soll", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107615,7 +108700,7 @@ { "Field": "haben", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107626,7 +108711,7 @@ { "Field": "gebuehr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107637,7 +108722,7 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107648,7 +108733,7 @@ { "Field": "art", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107659,7 +108744,7 @@ { "Field": "wert", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107670,7 +108755,7 @@ { "Field": "rechnungnr", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107681,7 +108766,7 @@ { "Field": "verwendungszweck", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107692,7 +108777,7 @@ { "Field": "kostenstelle", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107703,7 +108788,7 @@ { "Field": "zahlungsweise", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107714,7 +108799,7 @@ { "Field": "gegenkonto", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -107728,7 +108813,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107739,7 +108824,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107748,8 +108833,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -107763,7 +108849,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -107796,7 +108882,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107805,13 +108891,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "verbindlichkeit_regelmaessig", - "Non_unique": "1", - "columns": "verbindlichkeit_regelmaessig" + "columns": [ + "verbindlichkeit_regelmaessig" + ] } ] }, @@ -107825,7 +108913,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -107836,7 +108924,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107844,10 +108932,10 @@ { "Field": "objekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107855,10 +108943,10 @@ { "Field": "projekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107866,10 +108954,10 @@ { "Field": "adresse", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107888,10 +108976,10 @@ { "Field": "waehrung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107910,10 +108998,10 @@ { "Field": "vpe", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "1", + "Default": "'1'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107935,7 +109023,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107946,7 +109034,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107954,10 +109042,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107965,10 +109053,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107990,7 +109078,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108001,7 +109089,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108009,10 +109097,10 @@ { "Field": "kundenartikelnummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108020,10 +109108,10 @@ { "Field": "art", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "Kunde", + "Default": "'kunde'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108034,7 +109122,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108100,7 +109188,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108109,28 +109197,33 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "artikel", - "Non_unique": "1", - "columns": "artikel" + "columns": [ + "artikel" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] }, { "Key_name": "projekt", - "Non_unique": "1", - "columns": "projekt" + "columns": [ + "projekt" + ] }, { "Key_name": "kundenartikelnummer", - "Non_unique": "1", - "columns": "kundenartikelnummer" + "columns": [ + "kundenartikelnummer" + ] } ] }, @@ -108144,7 +109237,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -108185,7 +109278,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -108196,7 +109289,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -108230,8 +109323,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -108245,7 +109339,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -108287,13 +109381,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "user", - "Non_unique": "1", - "columns": "user" + "Key_name": "chart", + "columns": [ + "chart", + "projekt" + ] } ] }, @@ -108307,7 +109404,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -108315,10 +109412,10 @@ { "Field": "nummer", "Type": "varchar(20)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108326,10 +109423,10 @@ { "Field": "beschreibung", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108337,10 +109434,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108349,8 +109446,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -108364,7 +109462,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -108375,7 +109473,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108386,7 +109484,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108397,7 +109495,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108405,10 +109503,10 @@ { "Field": "versandart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108419,7 +109517,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108427,10 +109525,10 @@ { "Field": "gewicht", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108441,7 +109539,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108449,10 +109547,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108460,10 +109558,10 @@ { "Field": "versender", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108474,7 +109572,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108485,7 +109583,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108493,10 +109591,10 @@ { "Field": "versandunternehmen", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108504,10 +109602,10 @@ { "Field": "tracking", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108518,7 +109616,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108529,7 +109627,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108540,7 +109638,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108551,7 +109649,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108562,7 +109660,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108702,10 +109800,10 @@ { "Field": "tracking_link", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108746,7 +109844,7 @@ { "Field": "klaergrund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -108757,7 +109855,7 @@ { "Field": "bundesstaat", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -108769,23 +109867,27 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "lieferschein", - "Non_unique": "1", - "columns": "lieferschein" + "columns": [ + "lieferschein" + ] }, { "Key_name": "projekt", - "Non_unique": "1", - "columns": "projekt" + "columns": [ + "projekt" + ] }, { "Key_name": "cronjob", - "Non_unique": "1", - "columns": "cronjob" + "columns": [ + "cronjob" + ] } ] }, @@ -108799,7 +109901,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -108807,7 +109909,7 @@ { "Field": "type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -108818,7 +109920,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -108862,7 +109964,7 @@ { "Field": "modul", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -108906,10 +110008,10 @@ { "Field": "einstellungen_json", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108951,8 +110053,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -108966,7 +110069,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -108996,7 +110099,7 @@ { "Field": "tracking", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -109007,7 +110110,7 @@ { "Field": "versender", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -109018,7 +110121,7 @@ { "Field": "gewicht", "Type": "varchar(10)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -109029,10 +110132,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109041,8 +110144,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -109056,7 +110160,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109067,7 +110171,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109075,7 +110179,7 @@ { "Field": "aktion", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -109086,7 +110190,7 @@ { "Field": "wert", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -109100,7 +110204,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109120,8 +110224,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -109135,7 +110240,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109176,7 +110281,7 @@ { "Field": "objekt", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -109187,7 +110292,7 @@ { "Field": "belegnr", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -109198,7 +110303,7 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -109267,7 +110372,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109275,10 +110380,10 @@ { "Field": "waehrung", "Type": "varchar(3)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "EUR", + "Default": "'eur'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109331,8 +110436,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -109346,7 +110452,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109354,7 +110460,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -109379,7 +110485,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109387,10 +110493,10 @@ { "Field": "bemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109410,8 +110516,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -109425,7 +110532,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109455,7 +110562,7 @@ { "Field": "beschriftung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -109513,7 +110620,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109522,8 +110629,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -109537,7 +110645,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109545,7 +110653,7 @@ { "Field": "waehrung_von", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -109556,7 +110664,7 @@ { "Field": "waehrung_nach", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -109581,7 +110689,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109600,7 +110708,7 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -109611,7 +110719,7 @@ { "Field": "kommentar", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", "Default": "", @@ -109623,8 +110731,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -109638,7 +110747,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109646,10 +110755,10 @@ { "Field": "warteschlange", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109657,10 +110766,10 @@ { "Field": "label", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109671,7 +110780,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109682,7 +110791,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109691,13 +110800,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -109711,7 +110822,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109730,7 +110841,7 @@ { "Field": "sprache", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -109741,7 +110852,7 @@ { "Field": "typ", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -109752,10 +110863,10 @@ { "Field": "original", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109763,10 +110874,10 @@ { "Field": "uebersetzung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109774,7 +110885,7 @@ { "Field": "typ1", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -109785,7 +110896,7 @@ { "Field": "typ2", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -109797,13 +110908,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "resubmission_task", - "Non_unique": "0", - "columns": "resubmission_id" + "Key_name": "user", + "columns": [ + "user", + "sprache" + ] } ] }, @@ -109817,7 +110931,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109828,7 +110942,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109836,10 +110950,10 @@ { "Field": "benutzername", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109847,10 +110961,10 @@ { "Field": "passwort", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109858,10 +110972,10 @@ { "Field": "server", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109870,8 +110984,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -109885,7 +111000,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109896,7 +111011,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109904,10 +111019,10 @@ { "Field": "subject", "Type": "varchar(255)", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8_unicode_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109915,10 +111030,10 @@ { "Field": "sender", "Type": "varchar(255)", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8_unicode_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109926,10 +111041,10 @@ { "Field": "cc", "Type": "varchar(255)", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8_unicode_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109937,10 +111052,10 @@ { "Field": "bcc", "Type": "varchar(255)", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8_unicode_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109948,10 +111063,10 @@ { "Field": "replyto", "Type": "varchar(255)", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8_unicode_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109959,10 +111074,10 @@ { "Field": "plaintext", "Type": "text", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8_unicode_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109970,10 +111085,10 @@ { "Field": "htmltext", "Type": "text", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8_unicode_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109984,7 +111099,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109995,7 +111110,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110006,7 +111121,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110014,10 +111129,10 @@ { "Field": "checksum", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110026,8 +111141,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -110041,7 +111157,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110052,7 +111168,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110060,10 +111176,10 @@ { "Field": "zuordnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110074,7 +111190,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110083,8 +111199,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -110098,7 +111215,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110139,7 +111256,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -110150,10 +111267,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110161,10 +111278,10 @@ { "Field": "ergebnis", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110175,7 +111292,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110186,7 +111303,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110197,7 +111314,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110205,10 +111322,10 @@ { "Field": "erinnerung_empfaenger", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110216,10 +111333,10 @@ { "Field": "link", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110227,10 +111344,10 @@ { "Field": "module", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110238,10 +111355,10 @@ { "Field": "action", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110249,10 +111366,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110285,7 +111402,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110296,7 +111413,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110307,7 +111424,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110318,7 +111435,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110384,7 +111501,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110395,7 +111512,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110406,7 +111523,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110436,10 +111553,10 @@ { "Field": "color", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "#a2d624", + "Default": "'#a2d624'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110448,18 +111565,21 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] }, { "Key_name": "adresse_mitarbeiter", - "Non_unique": "1", - "columns": "adresse_mitarbeiter" + "columns": [ + "adresse_mitarbeiter" + ] } ] }, @@ -110473,7 +111593,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110484,7 +111604,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110495,7 +111615,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110515,13 +111635,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "user_id", - "Non_unique": "0", - "columns": "user_id" + "Key_name": "resubmission_task", + "columns": [ + "resubmission_id", + "task_id" + ] } ] }, @@ -110535,7 +111658,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110598,7 +111721,7 @@ { "Field": "title", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -110623,7 +111746,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110631,7 +111754,7 @@ { "Field": "state", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -110642,7 +111765,7 @@ { "Field": "priority", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -110653,10 +111776,10 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110665,8 +111788,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -110680,7 +111804,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110691,7 +111815,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110702,7 +111826,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110711,8 +111835,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -110726,7 +111851,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110737,7 +111862,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110746,13 +111871,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "resubmission_id", - "Non_unique": "1", - "columns": "resubmission_id" + "columns": [ + "resubmission_id" + ] } ] }, @@ -110766,7 +111893,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110774,7 +111901,7 @@ { "Field": "title", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -110843,7 +111970,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110852,8 +111979,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -110867,7 +111995,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110878,7 +112006,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110889,7 +112017,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110911,7 +112039,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110922,7 +112050,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110930,7 +112058,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -110941,10 +112069,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110952,10 +112080,10 @@ { "Field": "ergebnis", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110975,13 +112103,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "wiedervorlageid", - "Non_unique": "1", - "columns": "wiedervorlageid" + "columns": [ + "wiedervorlageid" + ] } ] }, @@ -110995,7 +112125,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111003,10 +112133,10 @@ { "Field": "kurzbezeichnung", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111014,10 +112144,10 @@ { "Field": "name", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111025,10 +112155,10 @@ { "Field": "hexcolor", "Type": "varchar(7)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "#A2D624", + "Default": "'#a2d624'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111039,7 +112169,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111050,7 +112180,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111061,7 +112191,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111083,7 +112213,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111092,8 +112222,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -111107,7 +112238,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111118,7 +112249,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111129,7 +112260,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111148,10 +112279,10 @@ { "Field": "content", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111159,10 +112290,10 @@ { "Field": "css", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111170,10 +112301,10 @@ { "Field": "color", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111184,7 +112315,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111214,7 +112345,7 @@ { "Field": "leadtype", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -111226,8 +112357,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -111241,7 +112373,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111249,10 +112381,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111260,10 +112392,10 @@ { "Field": "shortname", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111305,8 +112437,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -111320,7 +112453,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111351,8 +112484,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -111366,7 +112500,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111374,10 +112508,10 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111385,10 +112519,10 @@ { "Field": "content", "Type": "longtext", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111396,10 +112530,10 @@ { "Field": "lastcontent", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111429,7 +112563,7 @@ { "Field": "language", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -111441,13 +112575,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "name", - "Non_unique": "1", - "columns": "name" + "columns": [ + "name" + ] } ] }, @@ -111461,7 +112597,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111480,7 +112616,7 @@ { "Field": "comment", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -111491,7 +112627,7 @@ { "Field": "created_by", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -111513,10 +112649,10 @@ { "Field": "content", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111536,13 +112672,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "wiki_id", - "Non_unique": "1", - "columns": "wiki_id" + "columns": [ + "wiki_id" + ] } ] }, @@ -111556,7 +112694,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111575,10 +112713,10 @@ { "Field": "question", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111586,10 +112724,10 @@ { "Field": "answer", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111597,7 +112735,7 @@ { "Field": "created_by", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -111631,13 +112769,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "wiki_id", - "Non_unique": "1", - "columns": "wiki_id" + "columns": [ + "wiki_id" + ] } ] }, @@ -111651,7 +112791,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111693,13 +112833,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "wiki_id", - "Non_unique": "1", - "columns": "wiki_id" + "columns": [ + "wiki_id" + ] } ] }, @@ -111713,7 +112855,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111721,7 +112863,7 @@ { "Field": "name", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "UNI", "Default": "", @@ -111732,7 +112874,7 @@ { "Field": "foldername", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -111743,10 +112885,10 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111754,7 +112896,7 @@ { "Field": "savein", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -111777,13 +112919,15 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "name", - "Non_unique": "0", - "columns": "name" + "columns": [ + "name" + ] } ] }, @@ -111797,7 +112941,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111816,7 +112960,7 @@ { "Field": "key", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -111827,7 +112971,7 @@ { "Field": "title", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -111838,10 +112982,10 @@ { "Field": "skip_link_text", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111849,10 +112993,10 @@ { "Field": "params", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111860,10 +113004,10 @@ { "Field": "options", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111894,13 +113038,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "wizard_id", - "Non_unique": "0", - "columns": "wizard_id" + "Key_name": "user_id", + "columns": [ + "user_id", + "key" + ] } ] }, @@ -111914,7 +113061,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111933,7 +113080,7 @@ { "Field": "key", "Type": "varchar(32)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -111944,7 +113091,7 @@ { "Field": "link", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -111955,7 +113102,7 @@ { "Field": "title", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -111966,10 +113113,10 @@ { "Field": "caption", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111977,10 +113124,10 @@ { "Field": "description", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111988,10 +113135,10 @@ { "Field": "options", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112033,13 +113180,16 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { - "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "Key_name": "wizard_id", + "columns": [ + "wizard_id", + "key" + ] } ] }, @@ -112053,7 +113203,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112064,7 +113214,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112097,7 +113247,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112105,7 +113255,7 @@ { "Field": "versendet_per", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -112116,7 +113266,7 @@ { "Field": "ersteller", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -112127,7 +113277,7 @@ { "Field": "bic", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -112138,7 +113288,7 @@ { "Field": "iban", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -112160,7 +113310,7 @@ { "Field": "bemerkung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -112194,8 +113344,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -112209,7 +113360,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112240,8 +113391,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -112255,7 +113407,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112266,7 +113418,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112308,8 +113460,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -112323,7 +113476,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112354,8 +113507,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -112369,7 +113523,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112377,7 +113531,7 @@ { "Field": "type", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -112388,7 +113542,7 @@ { "Field": "bezeichnung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -112399,10 +113553,10 @@ { "Field": "freitext", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112476,10 +113630,10 @@ { "Field": "verhalten", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": "vorkasse", + "Default": "'vorkasse'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112487,7 +113641,7 @@ { "Field": "modul", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -112498,10 +113652,10 @@ { "Field": "einstellungen_json", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112510,8 +113664,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -112525,7 +113680,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112533,10 +113688,10 @@ { "Field": "art", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112547,7 +113702,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112558,7 +113713,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112577,10 +113732,10 @@ { "Field": "aufgabe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112588,10 +113743,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8_unicode_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112602,7 +113757,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112610,10 +113765,10 @@ { "Field": "buchungsart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112621,10 +113776,10 @@ { "Field": "kostenstelle", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112646,7 +113801,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112657,7 +113812,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112665,10 +113820,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112676,10 +113831,10 @@ { "Field": "gps", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112701,7 +113856,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112712,7 +113867,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112723,7 +113878,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112734,7 +113889,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112742,10 +113897,10 @@ { "Field": "ort", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112753,10 +113908,10 @@ { "Field": "abrechnung_dokument", "Type": "varchar(1024)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112767,7 +113922,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112775,10 +113930,10 @@ { "Field": "verrechnungsart", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112789,7 +113944,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112797,10 +113952,10 @@ { "Field": "internerkommentar", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112897,28 +114052,33 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] }, { "Key_name": "adresse_abrechnung", - "Non_unique": "1", - "columns": "adresse_abrechnung" + "columns": [ + "adresse_abrechnung" + ] }, { "Key_name": "abgerechnet", - "Non_unique": "1", - "columns": "abgerechnet" + "columns": [ + "abgerechnet" + ] }, { "Key_name": "abrechnen", - "Non_unique": "1", - "columns": "abrechnen" + "columns": [ + "abrechnen" + ] }, { "Key_name": "adresse", - "Non_unique": "1", - "columns": "adresse" + "columns": [ + "adresse" + ] } ] }, @@ -112932,7 +114092,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112940,7 +114100,7 @@ { "Field": "vorlage", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -112962,10 +114122,10 @@ { "Field": "vorlagedetail", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112973,10 +114133,10 @@ { "Field": "art", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113029,8 +114189,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -113044,7 +114205,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -113063,10 +114224,10 @@ { "Field": "beschreibung_deutsch", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113074,10 +114235,10 @@ { "Field": "beschreibung_englisch", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113085,10 +114246,10 @@ { "Field": "bestell_anmerkung_deutsch", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113096,10 +114257,10 @@ { "Field": "bestell_anmerkung_englisch", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113107,10 +114268,10 @@ { "Field": "interne_anmerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113173,10 +114334,10 @@ { "Field": "typ_text", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113195,10 +114356,10 @@ { "Field": "adresse_absender", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113228,7 +114389,7 @@ { "Field": "preis_eur", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -113239,7 +114400,7 @@ { "Field": "preis_usd", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -113253,7 +114414,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113261,7 +114422,7 @@ { "Field": "bearbeiter", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -113272,7 +114433,7 @@ { "Field": "preis_eur_retail", "Type": "varchar(128)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", "Default": "", @@ -113295,8 +114456,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -113310,7 +114472,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -113318,10 +114480,10 @@ { "Field": "nummer", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113329,10 +114491,10 @@ { "Field": "beschreibung", "Type": "varchar(512)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113340,10 +114502,10 @@ { "Field": "internebemerkung", "Type": "text", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113352,8 +114514,9 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] }, @@ -113367,7 +114530,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": null, + "Default": "", "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -113375,10 +114538,10 @@ { "Field": "bearbeiter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113389,7 +114552,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113400,7 +114563,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113411,7 +114574,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113419,10 +114582,10 @@ { "Field": "vpe", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113430,10 +114593,10 @@ { "Field": "grund", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113441,10 +114604,10 @@ { "Field": "lager_von", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113452,10 +114615,10 @@ { "Field": "lager_nach", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113463,10 +114626,10 @@ { "Field": "richtung", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113477,7 +114640,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113485,10 +114648,10 @@ { "Field": "objekt", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113496,10 +114659,10 @@ { "Field": "parameter", "Type": "varchar(255)", - "Collation": "utf8mb3_general_ci", + "Collation": "utf8_general_ci", "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113510,7 +114673,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113521,7 +114684,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113532,7 +114695,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": null, + "Default": "", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113541,10 +114704,11 @@ "keys": [ { "Key_name": "PRIMARY", - "Non_unique": "0", - "columns": "id" + "columns": [ + "id" + ] } ] } ] -} \ No newline at end of file +}