diff --git a/classes/Components/MailClient/Data/MailMessageData.php b/classes/Components/MailClient/Data/MailMessageData.php index 88224c88..bab8f8d9 100644 --- a/classes/Components/MailClient/Data/MailMessageData.php +++ b/classes/Components/MailClient/Data/MailMessageData.php @@ -309,6 +309,7 @@ final class MailMessageData implements MailMessageInterface, JsonSerializable } $dateTime = date_create($date->getValue()); if ($dateTime === false) { + throw new InvalidArgumentException('Invalid date: '.$date->getValue()); return null; } diff --git a/classes/Modules/Ticket/Task/TicketImportHelper.php b/classes/Modules/Ticket/Task/TicketImportHelper.php index 36a29c6a..942c73ec 100644 --- a/classes/Modules/Ticket/Task/TicketImportHelper.php +++ b/classes/Modules/Ticket/Task/TicketImportHelper.php @@ -511,7 +511,10 @@ class TicketImportHelper continue; } } catch (Throwable $e) { - $this->logger->error('Error during email import '.$messageNumber, ['message' => substr(print_r($message,true),0,1000)]); + + $exception_message = $e->getMessage(); + + $this->logger->error('Error during email import '.$messageNumber, ['exc-message' => $exception_message ,'message2' => substr(print_r($message,true),0,1000)]); continue; } } @@ -573,14 +576,17 @@ class TicketImportHelper $this->logger->debug('Text (converted)',['plain' => $action, 'html' => $action_html]); // Import database emailbackup - $date = $message->getDate(); - if (is_null($date)) { // This should not be happening -> Todo check getDate function - $this->logger->debug('Null date',['subject' => $message->getSubject(), $message->getHeader('date')->getValue()]); - return(false); - } else { - $timestamp = $date->getTimestamp(); - $frommd5 = md5($from . $subject . $timestamp); + try { + $date = $message->getDate(); } + catch (exception $e) { + $this->logger->debug('Invalid date',['exc-message' => $e->getMessage(),'subject' => $message->getSubject(), $message->getHeader('date')->getValue()]); + return(false); + } + + $timestamp = $date->getTimestamp(); + $frommd5 = md5($from . $subject . $timestamp); + $empfang = $date->format('Y-m-d H:i:s'); $sql = "SELECT COUNT(id) FROM `emailbackup_mails` diff --git a/phpwf/plugins/class.yui.php b/phpwf/plugins/class.yui.php index 47a31003..3cff0535 100644 --- a/phpwf/plugins/class.yui.php +++ b/phpwf/plugins/class.yui.php @@ -6081,11 +6081,11 @@ r.land as land, p.abkuerzung as projekt, r.zahlungsweise as zahlungsweise, $heading = array('', '', 'Gutschrift', 'Vom', 'Kd-Nr.', 'Kunde', 'Land', 'Projekt', - 'Zahlweise', 'Betrag (brutto)', 'bezahlt','RE-Nr.', 'Status','Monitor' ,'Menü' + 'Zahlweise', 'Betrag (brutto)', 'Zahlstatus','Differenz','RE-Nr.', 'Status','Monitor' ,'Menü' ); - $width = array('1%', '1%', '10%', '10%', '10%', '25%', '5%', '1%', '1%', '1%', '1%', '1%','5%', '1%','1%', '1%'); - $findcols = array('open', 'r.belegnr', 'r.belegnr', 'r.datum', 'adr.kundennummer', 'r.name', 'r.land', 'p.abkuerzung', 'r.zahlungsweise', 'r.soll','re.belegnr', 'r.zahlungsstatus', 'r.status', 'pt.payement_status' ,'id'); + $width = array('1%', '1%', '10%', '10%', '10%', '25%', '5%', '1%', '1%', '1%', '1%', '1%', '1%','5%', '1%','1%', '1%'); + $findcols = array('open', 'r.belegnr', 'r.belegnr', 'r.datum', 'adr.kundennummer', 'r.name', 'r.land', 'p.abkuerzung', 'r.zahlungsweise', 'r.soll', 'r.zahlungsstatus','r.soll-r.ist', 're.belegnr', 'r.status', 'id'); $searchsql = array('DATE_FORMAT(r.datum,\'%d.%m.%Y\')', 'r.belegnr', 'adr.kundennummer', 'r.name', 'r.land', 'p.abkuerzung','re.belegnr', 'r.status', "FORMAT(r.soll,2{$extended_mysql55})", 'adr.freifeld1', 'r.ihrebestellnummer','r.internebezeichnung','au.internet'); $defaultorder = 13; //Optional wenn andere Reihenfolge gewuenscht @@ -6127,20 +6127,31 @@ r.land as land, p.abkuerzung as projekt, r.zahlungsweise as zahlungsweise, $menu .= ""; - $menucol = 14; + $menucol = 15; $parameter = $this->app->User->GetParameter('table_filter_gutschrift'); $parameter = base64_decode($parameter); $parameter = json_decode($parameter, true); // SQL statement - $sql = "SELECT SQL_CALC_FOUND_ROWS r.id,'app->Conf->WFconf['defaulttheme']}/images/details_open.png class=details>' as open, concat('')as auswahl, - r.belegnr, - DATE_FORMAT(r.datum,'%d.%m.%Y') as vom, adr.kundennummer as kundennummer, - CONCAT(" . $this->app->erp->MarkerUseredit("r.name", "r.useredittimestamp") . ", if(r.internebezeichnung!='',CONCAT('
',r.internebezeichnung,''),'')) as kunde, - r.land as land, p.abkuerzung as projekt, r.zahlungsweise as zahlungsweise, - FORMAT(r.soll,2{$extended_mysql55}) as soll, r.zahlungsstatus as zahlung, re.belegnr as rechnung, UPPER(r.status) as status, - ".$this->IconsSQLReturnOrder()." ,r.id + $sql = "SELECT SQL_CALC_FOUND_ROWS + r.id, + 'app->Conf->WFconf['defaulttheme']}/images/details_open.png class=details>' as open, + concat('')as auswahl, + r.belegnr, + DATE_FORMAT(r.datum,'%d.%m.%Y') as vom, + adr.kundennummer as kundennummer, + CONCAT(" . $this->app->erp->MarkerUseredit("r.name", "r.useredittimestamp") . ", if(r.internebezeichnung!='',CONCAT('
',r.internebezeichnung,''),'')) as kunde, + r.land as land, + p.abkuerzung as projekt, + r.zahlungsweise as zahlungsweise, + ".$this->app->erp->FormatMenge('r.soll',2)." as soll, + r.zahlungsstatus as zahlung, + ".$this->app->erp->FormatMenge('r.soll-r.ist',2)." as differenz, + re.belegnr as rechnung, + UPPER(r.status) as status, + ".$this->IconsSQLReturnOrder().", + r.id FROM gutschrift r LEFT JOIN rechnung re ON re.id=r.rechnungid LEFT JOIN projekt p ON p.id=r.projekt @@ -6551,13 +6562,24 @@ r.land as land, p.abkuerzung as projekt, r.zahlungsweise as zahlungsweise, // $columnfilter = true; // SQL statement - $sql = "SELECT SQL_CALC_FOUND_ROWS r.id,'app->Conf->WFconf['defaulttheme']}/images/details_open.png class=details>' as open,concat('')as auswahl, r.belegnr, DATE_FORMAT(r.datum,'%d.%m.%Y') as vom, - if(r.kundennummer <> '',r.kundennummer,adr.kundennummer), - - CONCAT(" . $this->app->erp->MarkerUseredit("r.name", "r.useredittimestamp") . ", if(r.internebezeichnung!='',CONCAT('
',r.internebezeichnung,''),'')) as kunde, - r.land as land, p.abkuerzung as projekt, r.zahlungsweise as zahlungsweise, FORMAT(r.soll,2{$extended_mysql55} ) as soll, ifnull(r.waehrung,'EUR'), - if(r.soll-r.ist+r.skonto_gegeben!=0 AND r.ist > 0 AND r.zahlungsstatus!='bezahlt','teilbezahlt',r.zahlungsstatus) as zahlung, - if(r.soll-r.ist+r.skonto_gegeben!=0 AND r.ist > 0,FORMAT(r.ist-r.soll+r.skonto_gegeben,2{$extended_mysql55}),FORMAT((r.soll-r.ist+r.skonto_gegeben)*-1,2{$extended_mysql55})) as fehlt, if(r.status = 'storniert' AND r.teilstorno = 1,'TEILSTORNO',UPPER(r.status)) as status, ".(!empty($zusatzcols)?implode(', ',$zusatzcols).',':'')." r.id + $sql = "SELECT SQL_CALC_FOUND_ROWS + r.id, + 'app->Conf->WFconf['defaulttheme']}/images/details_open.png class=details>' as open, + concat('') as auswahl, + r.belegnr, + DATE_FORMAT(r.datum,'%d.%m.%Y') as vom, + if(r.kundennummer <> '',r.kundennummer,adr.kundennummer), + CONCAT(" . $this->app->erp->MarkerUseredit("r.name", "r.useredittimestamp") . ", if(r.internebezeichnung!='',CONCAT('
',r.internebezeichnung,''),'')) as kunde, + r.land as land, + p.abkuerzung as projekt, + r.zahlungsweise as zahlungsweise, + FORMAT(r.soll,2{$extended_mysql55} ) as soll, + ifnull(r.waehrung,'EUR'), + if(r.soll-r.ist=0 AND r.ist > 0 AND r.zahlungsstatus!='bezahlt','teilbezahlt',r.zahlungsstatus) as zahlung, + if(r.soll-r.ist!=0 AND r.ist > 0,FORMAT(r.ist-r.soll,2{$extended_mysql55}),FORMAT((r.soll-r.ist)*-1,2{$extended_mysql55})) as fehlt, + if(r.status = 'storniert' AND r.teilstorno = 1,'TEILSTORNO',UPPER(r.status)) as status, + ".(!empty($zusatzcols)?implode(', ',$zusatzcols).',':'')." + r.id FROM rechnung r LEFT JOIN projekt p ON p.id=r.projekt LEFT JOIN adresse adr ON r.adresse=adr.id LEFT JOIN auftrag au ON au.id = r.auftragid "; if(isset($parameter['artikel']) && !empty($parameter['artikel'])) { $artikelid = $this->app->DB->Select("SELECT id FROM artikel where geloescht != 1 AND nummer != 'DEL' AND nummer != '' AND nummer = '".$this->app->DB->real_escape_string(reset(explode(' ',trim($parameter['artikel']))))."' LIMIT 1"); diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index 7ab66584..e25475f4 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -5,6 +5,7 @@ "tables": [ { "name": "abrechnungsartikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13,7 +14,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -24,7 +25,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35,7 +36,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46,7 +47,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57,7 +58,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68,7 +69,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79,7 +80,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90,7 +91,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101,7 +102,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112,7 +113,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -123,7 +124,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -134,7 +135,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -145,7 +146,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -156,7 +157,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -167,7 +168,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -178,7 +179,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -189,7 +190,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -200,7 +201,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -211,7 +212,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -222,7 +223,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -233,7 +234,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -255,7 +256,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -266,7 +267,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -277,7 +278,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -288,7 +289,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -310,7 +311,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -332,7 +333,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -363,21 +364,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse", "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "abrechnungsartikel_gruppe", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -386,7 +392,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -397,7 +403,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -408,7 +414,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -430,7 +436,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -441,7 +447,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -516,14 +522,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "abschlagsrechnung_rechnung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -532,7 +541,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -565,7 +574,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -574,26 +583,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "rechnung", + "Index_type": "BTREE", "columns": [ "rechnung" - ] + ], + "Non_unique": "" }, { "Key_name": "auftrag", + "Index_type": "BTREE", "columns": [ "auftrag" - ] + ], + "Non_unique": "" } ] }, { "name": "accordion", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -602,7 +618,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -613,7 +629,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -624,7 +640,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -635,7 +651,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -644,14 +660,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "adapterbox", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -660,7 +679,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -671,7 +690,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -682,7 +701,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -693,7 +712,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -704,7 +723,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -715,7 +734,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -726,7 +745,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -737,7 +756,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -748,7 +767,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -759,7 +778,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -792,7 +811,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -803,7 +822,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -814,7 +833,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -825,7 +844,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -834,14 +853,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "adapterbox_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -850,7 +872,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -861,7 +883,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -872,7 +894,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -883,7 +905,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -894,7 +916,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -905,7 +927,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -914,14 +936,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "adapterbox_request_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -930,7 +955,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -941,7 +966,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -952,7 +977,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -963,7 +988,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -974,7 +999,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -985,7 +1010,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1016,14 +1041,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "adresse", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -1032,7 +1060,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -1043,7 +1071,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1054,7 +1082,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1065,7 +1093,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1076,7 +1104,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1087,7 +1115,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1098,7 +1126,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1109,7 +1137,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1120,7 +1148,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1131,7 +1159,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1142,7 +1170,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1153,7 +1181,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1164,7 +1192,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1175,7 +1203,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1186,7 +1214,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1197,7 +1225,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1208,7 +1236,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1219,7 +1247,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1230,7 +1258,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1241,7 +1269,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1252,7 +1280,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1263,7 +1291,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1274,7 +1302,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1285,7 +1313,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1296,7 +1324,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1318,7 +1346,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1329,7 +1357,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1340,7 +1368,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1351,7 +1379,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1362,7 +1390,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1373,7 +1401,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1384,7 +1412,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1395,7 +1423,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1406,7 +1434,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1417,7 +1445,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1428,7 +1456,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1439,7 +1467,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1450,7 +1478,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1461,7 +1489,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1472,7 +1500,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1483,7 +1511,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1494,7 +1522,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1505,7 +1533,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1516,7 +1544,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1527,7 +1555,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1538,7 +1566,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1549,7 +1577,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1560,7 +1588,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1571,7 +1599,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1582,7 +1610,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1593,7 +1621,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1604,7 +1632,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1615,7 +1643,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1626,7 +1654,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1637,7 +1665,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1648,7 +1676,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1659,7 +1687,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1670,7 +1698,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1681,7 +1709,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1692,7 +1720,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1703,7 +1731,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1714,7 +1742,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1725,7 +1753,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1736,7 +1764,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1747,7 +1775,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1758,7 +1786,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1780,7 +1808,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1791,7 +1819,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1802,7 +1830,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1824,7 +1852,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1857,7 +1885,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1868,7 +1896,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1879,7 +1907,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1890,7 +1918,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1901,7 +1929,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1912,7 +1940,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1967,7 +1995,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1978,7 +2006,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -1989,7 +2017,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2000,7 +2028,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2011,7 +2039,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2022,7 +2050,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2033,7 +2061,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2044,7 +2072,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2055,7 +2083,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2066,7 +2094,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2077,7 +2105,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2088,7 +2116,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2099,7 +2127,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2110,7 +2138,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2121,7 +2149,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2132,7 +2160,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2143,7 +2171,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2154,7 +2182,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2165,7 +2193,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2176,7 +2204,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2187,7 +2215,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2198,7 +2226,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2209,7 +2237,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2220,7 +2248,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2231,7 +2259,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2242,7 +2270,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2264,7 +2292,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2275,7 +2303,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2286,7 +2314,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2297,7 +2325,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2319,7 +2347,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2341,7 +2369,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2352,7 +2380,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2363,7 +2391,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2374,7 +2402,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2385,7 +2413,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2396,7 +2424,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2407,7 +2435,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2418,7 +2446,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2429,7 +2457,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2440,7 +2468,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2451,7 +2479,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2462,7 +2490,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2473,7 +2501,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2484,7 +2512,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2495,7 +2523,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2506,7 +2534,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2517,7 +2545,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2528,7 +2556,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2539,7 +2567,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2550,7 +2578,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2561,7 +2589,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2572,7 +2600,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2583,7 +2611,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2594,7 +2622,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2605,7 +2633,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2616,7 +2644,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2627,7 +2655,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2638,7 +2666,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2649,7 +2677,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2660,7 +2688,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2671,7 +2699,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2682,7 +2710,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2693,7 +2721,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2704,7 +2732,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2715,7 +2743,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2748,7 +2776,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2759,7 +2787,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2770,7 +2798,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2781,7 +2809,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2803,7 +2831,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2814,7 +2842,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2825,7 +2853,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2836,7 +2864,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2847,7 +2875,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2858,7 +2886,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2869,7 +2897,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2891,7 +2919,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2902,7 +2930,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2913,7 +2941,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2924,7 +2952,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2935,7 +2963,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2946,7 +2974,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2957,7 +2985,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2968,7 +2996,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2979,7 +3007,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -2990,7 +3018,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3001,7 +3029,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3012,7 +3040,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3034,7 +3062,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3056,7 +3084,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3100,7 +3128,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3111,7 +3139,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3133,7 +3161,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3144,7 +3172,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3166,7 +3194,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3177,7 +3205,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3188,7 +3216,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3221,7 +3249,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3232,7 +3260,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3243,7 +3271,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3254,7 +3282,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3265,7 +3293,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3287,7 +3315,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3298,7 +3326,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3309,7 +3337,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3320,7 +3348,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3331,7 +3359,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3342,7 +3370,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3353,7 +3381,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3364,7 +3392,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3375,7 +3403,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3386,7 +3414,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3397,7 +3425,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3408,7 +3436,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3419,7 +3447,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3430,7 +3458,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3441,7 +3469,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3452,7 +3480,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3474,7 +3502,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3496,7 +3524,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3518,7 +3546,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3529,7 +3557,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3551,7 +3579,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3584,7 +3612,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3595,7 +3623,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3606,7 +3634,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3615,56 +3643,73 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] - }, - { - "Key_name": "name", - "columns": [ - "name" - ] - }, - { - "Key_name": "projekt", - "columns": [ - "projekt" - ] + ], + "Non_unique": "" }, { "Key_name": "kundennummer", + "Index_type": "BTREE", "columns": [ "kundennummer" - ] + ], + "Non_unique": "" }, { "Key_name": "lieferantennummer", + "Index_type": "BTREE", "columns": [ "lieferantennummer" - ] + ], + "Non_unique": "" }, { "Key_name": "usereditid", + "Index_type": "BTREE", "columns": [ "usereditid" - ] + ], + "Non_unique": "" }, { "Key_name": "plz", + "Index_type": "BTREE", "columns": [ "plz" - ] + ], + "Non_unique": "" }, { "Key_name": "email", + "Index_type": "BTREE", "columns": [ "email" - ] + ], + "Non_unique": "" + }, + { + "Key_name": "name", + "Index_type": "BTREE", + "columns": [ + "name" + ], + "Non_unique": "" + }, + { + "Key_name": "projekt", + "Index_type": "BTREE", + "columns": [ + "projekt" + ], + "Non_unique": "" } ] }, { "name": "adresse_abosammelrechnungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -3673,7 +3718,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -3684,7 +3729,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3737,20 +3782,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "adresse_accounts", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -3759,7 +3809,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -3781,7 +3831,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3792,7 +3842,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3803,7 +3853,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3814,7 +3864,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3825,7 +3875,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3836,7 +3886,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3858,7 +3908,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3869,7 +3919,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3878,20 +3928,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "adresse_filter", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -3900,7 +3955,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -3911,7 +3966,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -3953,14 +4008,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "adresse_filter_gruppen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -3969,7 +4027,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4033,20 +4091,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "filter", + "Index_type": "BTREE", "columns": [ "filter" - ] + ], + "Non_unique": "" } ] }, { "name": "adresse_filter_positionen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4055,7 +4118,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4088,7 +4151,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4099,7 +4162,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4132,7 +4195,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4143,7 +4206,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4154,7 +4217,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4174,26 +4237,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "filter", + "Index_type": "BTREE", "columns": [ "filter" - ] + ], + "Non_unique": "" }, { "Key_name": "gruppe", + "Index_type": "BTREE", "columns": [ "gruppe" - ] + ], + "Non_unique": "" } ] }, { "name": "adresse_import", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4202,7 +4272,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4213,7 +4283,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4224,7 +4294,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4235,7 +4305,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4246,7 +4316,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4257,7 +4327,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4268,7 +4338,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4279,7 +4349,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4290,7 +4360,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4301,7 +4371,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4312,7 +4382,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4323,7 +4393,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4334,7 +4404,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4345,7 +4415,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4356,7 +4426,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4367,7 +4437,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4378,7 +4448,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4411,7 +4481,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4431,14 +4501,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "adresse_kontakhistorie", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4447,7 +4520,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4458,7 +4531,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4469,7 +4542,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4480,7 +4553,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4491,7 +4564,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4502,7 +4575,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4522,20 +4595,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "adresse_kontakte", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4544,7 +4622,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4555,7 +4633,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4566,7 +4644,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4577,7 +4655,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4586,20 +4664,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "adresse_rolle", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4608,7 +4691,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4619,7 +4702,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4630,7 +4713,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4641,7 +4724,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4652,7 +4735,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4663,7 +4746,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4674,7 +4757,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4685,7 +4768,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4696,7 +4779,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4705,26 +4788,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" }, { "Key_name": "projekt", + "Index_type": "BTREE", "columns": [ "projekt" - ] + ], + "Non_unique": "" } ] }, { "name": "adresse_typ", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4733,7 +4823,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4744,7 +4834,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4755,7 +4845,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4808,14 +4898,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "adressetiketten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4824,7 +4917,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4857,7 +4950,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4866,14 +4959,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "aktionscode_liste", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4882,7 +4978,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4893,7 +4989,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4904,7 +5000,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4926,7 +5022,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4935,14 +5031,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "amainvoice_config", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -4951,7 +5050,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -4961,8 +5060,8 @@ "Type": "varchar(255)", "Collation": "utf8mb3_general_ci", "Null": "NO", - "Key": "UNI", - "Default": "", + "Key": "MUL", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4973,7 +5072,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -4982,20 +5081,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "name", + "Index_type": "BTREE", "columns": [ "name" - ] + ], + "Non_unique": "" } ] }, { "name": "amainvoice_files", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5004,7 +5108,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -5015,7 +5119,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5026,7 +5130,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5037,7 +5141,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5057,20 +5161,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "filename", + "Index_type": "BTREE", "columns": [ "filename" - ] + ], + "Non_unique": "" } ] }, { "name": "amazon_article", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5079,7 +5188,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -5112,7 +5221,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5123,7 +5232,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5154,26 +5263,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "article_id", + "Index_type": "BTREE", "columns": [ "article_id" - ] + ], + "Non_unique": "" }, { "Key_name": "seller_sku", + "Index_type": "BTREE", "columns": [ "seller_sku" - ] + ], + "Non_unique": "" } ] }, { "name": "amazon_rechnung_anlegen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5182,7 +5298,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -5246,22 +5362,27 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shopid", + "Index_type": "BTREE", "columns": [ "shopid", "auftrag", "status" - ] + ], + "Non_unique": "" } ] }, { "name": "amazon_report", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5270,7 +5391,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -5292,7 +5413,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5303,7 +5424,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5314,7 +5435,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5325,7 +5446,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5336,7 +5457,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5380,7 +5501,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5391,7 +5512,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5424,7 +5545,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5435,7 +5556,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5444,39 +5565,50 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id", "reportid" - ] + ], + "Non_unique": "" }, { "Key_name": "reporttype", + "Index_type": "BTREE", "columns": [ "reporttype" - ] + ], + "Non_unique": "" }, { "Key_name": "requestreportid", + "Index_type": "BTREE", "columns": [ "requestreportid" - ] + ], + "Non_unique": "" }, { "Key_name": "created_at", + "Index_type": "BTREE", "columns": [ "created_at" - ] + ], + "Non_unique": "" } ] }, { "name": "amazon_report_schedule", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5485,7 +5617,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -5507,7 +5639,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5518,7 +5650,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5540,7 +5672,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5560,24 +5692,29 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id", "report_type", "schedule", "scheduled_date", "deleted" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "amazon_shipment_info", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -5586,7 +5723,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -5608,7 +5745,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5619,7 +5756,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5630,7 +5767,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5641,7 +5778,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5652,7 +5789,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5663,7 +5800,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5674,7 +5811,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5685,7 +5822,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5696,7 +5833,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5707,7 +5844,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5718,7 +5855,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5729,7 +5866,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5751,7 +5888,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5762,7 +5899,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5773,7 +5910,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5784,7 +5921,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5795,7 +5932,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5806,7 +5943,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5817,7 +5954,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5828,7 +5965,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5839,7 +5976,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5850,7 +5987,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5861,7 +5998,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5872,7 +6009,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5883,7 +6020,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5894,7 +6031,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5905,7 +6042,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5916,7 +6053,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5927,7 +6064,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5938,7 +6075,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5949,7 +6086,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5960,7 +6097,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5971,7 +6108,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5982,7 +6119,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -5993,7 +6130,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6004,7 +6141,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6015,7 +6152,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6026,7 +6163,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6037,7 +6174,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6046,26 +6183,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id" - ] + ], + "Non_unique": "" }, { "Key_name": "orderid", + "Index_type": "BTREE", "columns": [ "orderid" - ] + ], + "Non_unique": "" } ] }, { "name": "amazon_vat_report", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -6074,7 +6218,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -6096,7 +6240,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6107,7 +6251,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6118,7 +6262,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6129,7 +6273,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6140,7 +6284,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6261,7 +6405,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6272,7 +6416,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6283,7 +6427,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6294,7 +6438,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6303,38 +6447,49 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "orderid", + "Index_type": "BTREE", "columns": [ "orderid" - ] + ], + "Non_unique": "" }, { "Key_name": "hash_sha1", + "Index_type": "BTREE", "columns": [ "hash_sha1" - ] + ], + "Non_unique": "" }, { "Key_name": "transaction_type", + "Index_type": "BTREE", "columns": [ "transaction_type" - ] + ], + "Non_unique": "" }, { "Key_name": "position_id", + "Index_type": "BTREE", "columns": [ "position_id" - ] + ], + "Non_unique": "" } ] }, { "name": "amazon_vatinvoice", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -6343,7 +6498,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -6365,7 +6520,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6376,7 +6531,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6398,7 +6553,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6409,7 +6564,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6420,7 +6575,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6431,7 +6586,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6442,7 +6597,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6453,7 +6608,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6464,7 +6619,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6475,7 +6630,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6495,21 +6650,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shopid", + "Index_type": "BTREE", "columns": [ "shopid", "orderid" - ] + ], + "Non_unique": "" } ] }, { "name": "amazoninvoice_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -6518,7 +6678,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -6529,7 +6689,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6562,7 +6722,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6573,7 +6733,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6584,7 +6744,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6595,7 +6755,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6606,7 +6766,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6617,7 +6777,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6628,7 +6788,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6639,7 +6799,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6650,7 +6810,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6661,7 +6821,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6672,7 +6832,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6683,7 +6843,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6694,7 +6854,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6705,7 +6865,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6716,7 +6876,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6727,7 +6887,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6738,7 +6898,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6749,7 +6909,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6760,7 +6920,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6771,7 +6931,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6782,7 +6942,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6793,7 +6953,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6804,7 +6964,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6815,7 +6975,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6826,7 +6986,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6837,7 +6997,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6848,7 +7008,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6859,7 +7019,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6870,7 +7030,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6881,7 +7041,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6892,7 +7052,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6903,7 +7063,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6914,7 +7074,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6925,7 +7085,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6936,7 +7096,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6947,7 +7107,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6958,7 +7118,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6969,7 +7129,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6980,7 +7140,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -6991,7 +7151,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7002,7 +7162,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7013,7 +7173,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7024,7 +7184,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7035,7 +7195,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7046,7 +7206,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7057,7 +7217,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7068,7 +7228,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7079,7 +7239,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7090,7 +7250,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7101,7 +7261,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7112,7 +7272,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7123,7 +7283,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7134,7 +7294,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7145,7 +7305,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7156,7 +7316,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7167,7 +7327,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7178,7 +7338,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7189,7 +7349,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7200,7 +7360,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7211,7 +7371,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7222,7 +7382,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7233,7 +7393,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7244,7 +7404,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7255,7 +7415,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7277,7 +7437,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7288,7 +7448,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7299,7 +7459,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7310,7 +7470,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7321,7 +7481,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7332,7 +7492,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7343,7 +7503,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7354,7 +7514,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7365,7 +7525,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7376,7 +7536,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7387,7 +7547,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7418,14 +7578,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "anfrage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -7434,7 +7597,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -7445,7 +7608,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7456,7 +7619,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7467,7 +7630,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7478,7 +7641,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7489,7 +7652,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7500,7 +7663,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7511,7 +7674,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7522,7 +7685,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7533,7 +7696,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7544,7 +7707,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7555,7 +7718,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7566,7 +7729,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7577,7 +7740,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7588,7 +7751,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7599,7 +7762,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7610,7 +7773,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7621,7 +7784,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7632,7 +7795,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7643,7 +7806,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7654,7 +7817,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7665,7 +7828,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7676,7 +7839,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7687,7 +7850,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7698,7 +7861,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7709,7 +7872,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7720,7 +7883,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7731,7 +7894,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7742,7 +7905,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7753,7 +7916,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7764,7 +7927,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7775,7 +7938,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7786,7 +7949,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7797,7 +7960,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7819,7 +7982,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7841,7 +8004,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7852,7 +8015,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7863,7 +8026,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7874,7 +8037,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7885,7 +8048,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7896,7 +8059,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7918,7 +8081,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7940,7 +8103,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7951,7 +8114,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7962,7 +8125,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7973,7 +8136,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7984,7 +8147,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -7995,7 +8158,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8006,7 +8169,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8072,7 +8235,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8083,7 +8246,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8105,7 +8268,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8116,7 +8279,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8127,7 +8290,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8138,7 +8301,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8149,7 +8312,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8160,7 +8323,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8169,14 +8332,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "anfrage_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -8185,7 +8351,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -8196,7 +8362,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8207,7 +8373,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8218,7 +8384,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8229,7 +8395,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8240,7 +8406,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8251,7 +8417,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8262,7 +8428,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8273,7 +8439,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8284,7 +8450,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8295,7 +8461,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8306,7 +8472,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8328,7 +8494,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8339,7 +8505,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8350,7 +8516,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8361,7 +8527,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8383,7 +8549,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8394,7 +8560,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8405,7 +8571,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8416,7 +8582,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8427,7 +8593,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8438,7 +8604,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8449,7 +8615,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8460,7 +8626,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8471,7 +8637,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8482,7 +8648,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8493,7 +8659,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8504,7 +8670,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8515,7 +8681,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8526,7 +8692,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8537,7 +8703,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8548,7 +8714,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8559,7 +8725,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8570,7 +8736,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8581,7 +8747,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8592,7 +8758,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8603,7 +8769,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8614,7 +8780,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8625,7 +8791,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8636,7 +8802,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8647,7 +8813,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8658,7 +8824,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8669,7 +8835,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8680,7 +8846,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8691,7 +8857,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8702,7 +8868,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8713,7 +8879,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8724,7 +8890,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8735,7 +8901,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8746,7 +8912,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8757,7 +8923,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8768,7 +8934,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8779,7 +8945,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8790,7 +8956,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8801,7 +8967,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8812,7 +8978,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8823,7 +8989,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8834,7 +9000,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8845,7 +9011,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8856,7 +9022,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8867,7 +9033,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8878,7 +9044,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8889,7 +9055,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8900,7 +9066,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8911,7 +9077,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8922,7 +9088,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8942,20 +9108,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "anfrage", + "Index_type": "BTREE", "columns": [ "anfrage" - ] + ], + "Non_unique": "" } ] }, { "name": "anfrage_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -8964,7 +9135,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -8975,7 +9146,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8986,7 +9157,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -8997,7 +9168,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9008,7 +9179,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9017,20 +9188,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "anfrage", + "Index_type": "BTREE", "columns": [ "anfrage" - ] + ], + "Non_unique": "" } ] }, { "name": "angebot", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -9039,7 +9215,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -9050,7 +9226,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9061,7 +9237,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9072,7 +9248,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9083,7 +9259,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9094,7 +9270,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9105,7 +9281,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9116,7 +9292,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9127,7 +9303,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9138,7 +9314,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9149,7 +9325,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9160,7 +9336,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9171,7 +9347,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9182,7 +9358,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9193,7 +9369,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9204,7 +9380,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9215,7 +9391,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9226,7 +9402,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9237,7 +9413,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9248,7 +9424,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9259,7 +9435,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9270,7 +9446,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9281,7 +9457,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9292,7 +9468,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9303,7 +9479,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9314,7 +9490,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9325,7 +9501,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9336,7 +9512,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9347,7 +9523,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9358,7 +9534,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9369,7 +9545,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9380,7 +9556,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9391,7 +9567,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9402,7 +9578,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9413,7 +9589,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9424,7 +9600,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9435,7 +9611,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9446,7 +9622,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9457,7 +9633,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9468,7 +9644,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9479,7 +9655,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9490,7 +9666,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9501,7 +9677,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9512,7 +9688,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9523,7 +9699,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9545,7 +9721,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9556,7 +9732,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9567,7 +9743,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9578,7 +9754,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9589,7 +9765,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9600,7 +9776,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9611,7 +9787,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9622,7 +9798,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9633,7 +9809,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9644,7 +9820,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9655,7 +9831,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9666,7 +9842,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9677,7 +9853,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9688,7 +9864,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9699,7 +9875,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9710,7 +9886,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9721,7 +9897,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9732,7 +9908,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9743,7 +9919,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9754,7 +9930,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9765,7 +9941,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9776,7 +9952,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9787,7 +9963,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9798,7 +9974,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9809,7 +9985,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9820,7 +9996,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9831,7 +10007,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9842,7 +10018,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9853,7 +10029,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9864,7 +10040,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9875,7 +10051,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9886,7 +10062,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9897,7 +10073,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9908,7 +10084,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9919,7 +10095,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9941,7 +10117,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -9996,7 +10172,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10007,7 +10183,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10018,7 +10194,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10029,7 +10205,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10051,7 +10227,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10084,7 +10260,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10095,7 +10271,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10117,7 +10293,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10128,7 +10304,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10139,7 +10315,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10150,7 +10326,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10161,7 +10337,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10172,7 +10348,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10183,7 +10359,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10249,7 +10425,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10304,7 +10480,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10381,7 +10557,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10392,7 +10568,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10436,7 +10612,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10447,7 +10623,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10458,7 +10634,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10469,7 +10645,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10480,7 +10656,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10491,7 +10667,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10513,7 +10689,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10535,7 +10711,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10546,7 +10722,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10557,7 +10733,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10568,7 +10744,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10579,7 +10755,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10601,7 +10777,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10634,7 +10810,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10645,7 +10821,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10656,7 +10832,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10667,7 +10843,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10678,7 +10854,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10689,7 +10865,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10700,7 +10876,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10711,7 +10887,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10722,7 +10898,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10733,7 +10909,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10742,56 +10918,73 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "projekt", + "Index_type": "BTREE", "columns": [ "projekt" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" }, { "Key_name": "vertriebid", + "Index_type": "BTREE", "columns": [ "vertriebid" - ] + ], + "Non_unique": "" }, { "Key_name": "status", + "Index_type": "BTREE", "columns": [ "status" - ] + ], + "Non_unique": "" }, { "Key_name": "datum", + "Index_type": "BTREE", "columns": [ "datum" - ] + ], + "Non_unique": "" }, { "Key_name": "belegnr", + "Index_type": "BTREE", "columns": [ "belegnr" - ] + ], + "Non_unique": "" }, { "Key_name": "versandart", + "Index_type": "BTREE", "columns": [ "versandart" - ] + ], + "Non_unique": "" } ] }, { "name": "angebot_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -10800,7 +10993,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -10811,7 +11004,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10822,7 +11015,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10833,7 +11026,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10844,7 +11037,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10855,7 +11048,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10866,7 +11059,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10877,7 +11070,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10888,7 +11081,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10910,7 +11103,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10921,7 +11114,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10932,7 +11125,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10943,7 +11136,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10954,7 +11147,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10965,7 +11158,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10976,7 +11169,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -10987,7 +11180,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11009,7 +11202,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11020,7 +11213,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11031,7 +11224,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11042,7 +11235,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11053,7 +11246,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11064,7 +11257,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11075,7 +11268,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11086,7 +11279,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11097,7 +11290,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11108,7 +11301,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11119,7 +11312,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11130,7 +11323,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11152,7 +11345,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11185,7 +11378,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11196,7 +11389,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11207,7 +11400,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11218,7 +11411,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11229,7 +11422,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11240,7 +11433,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11251,7 +11444,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11262,7 +11455,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11273,7 +11466,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11284,7 +11477,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11295,7 +11488,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11328,7 +11521,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11339,7 +11532,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11350,7 +11543,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11361,7 +11554,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11383,7 +11576,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11427,7 +11620,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11449,7 +11642,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11460,7 +11653,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11471,7 +11664,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11482,7 +11675,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11493,7 +11686,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11504,7 +11697,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11515,7 +11708,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11526,7 +11719,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11537,7 +11730,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11548,7 +11741,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11559,7 +11752,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11570,7 +11763,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11581,7 +11774,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11592,7 +11785,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11603,7 +11796,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11614,7 +11807,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11625,7 +11818,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11636,7 +11829,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11647,7 +11840,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11658,7 +11851,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11669,7 +11862,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11680,7 +11873,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11691,7 +11884,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11702,7 +11895,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11713,7 +11906,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11724,7 +11917,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11735,7 +11928,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11746,7 +11939,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11757,7 +11950,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11768,7 +11961,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11779,7 +11972,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11790,7 +11983,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11812,7 +12005,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11823,7 +12016,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11834,7 +12027,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11845,7 +12038,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11856,7 +12049,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11867,7 +12060,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11878,7 +12071,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11933,7 +12126,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11944,7 +12137,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11955,7 +12148,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11966,7 +12159,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -11975,26 +12168,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "angebot", + "Index_type": "BTREE", "columns": [ "angebot" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "angebot_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12003,7 +12203,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -12014,7 +12214,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12025,7 +12225,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12036,7 +12236,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12047,7 +12247,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12056,20 +12256,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "angebot", + "Index_type": "BTREE", "columns": [ "angebot" - ] + ], + "Non_unique": "" } ] }, { "name": "ansprechpartner", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12078,7 +12283,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -12089,7 +12294,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12100,7 +12305,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12111,7 +12316,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12122,7 +12327,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12133,7 +12338,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12144,7 +12349,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12155,7 +12360,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12166,7 +12371,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12177,7 +12382,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12188,7 +12393,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12199,7 +12404,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12210,7 +12415,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12221,7 +12426,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12232,7 +12437,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12243,7 +12448,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12254,7 +12459,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12265,7 +12470,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12287,7 +12492,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12298,7 +12503,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12309,7 +12514,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12320,7 +12525,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12331,7 +12536,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12342,7 +12547,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12386,7 +12591,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12406,20 +12611,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "ansprechpartner_gruppen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12428,7 +12638,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -12470,14 +12680,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "api_account", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12486,7 +12699,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -12497,7 +12710,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12508,7 +12721,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12519,7 +12732,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12530,7 +12743,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12541,7 +12754,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12607,7 +12820,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12638,14 +12851,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "api_keys", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12654,7 +12870,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -12665,7 +12881,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12676,7 +12892,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12707,14 +12923,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "api_mapping", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12723,7 +12942,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -12756,7 +12975,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12778,7 +12997,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12798,32 +13017,41 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "uebertragung_account", + "Index_type": "BTREE", "columns": [ "uebertragung_account" - ] + ], + "Non_unique": "" }, { "Key_name": "id_ext", + "Index_type": "BTREE", "columns": [ "id_ext" - ] + ], + "Non_unique": "" }, { "Key_name": "api", + "Index_type": "BTREE", "columns": [ "api" - ] + ], + "Non_unique": "" } ] }, { "name": "api_permission", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12832,7 +13060,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -12842,8 +13070,8 @@ "Type": "varchar(255)", "Collation": "utf8mb3_general_ci", "Null": "YES", - "Key": "UNI", - "Default": "", + "Key": "MUL", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12854,7 +13082,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12863,20 +13091,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "key", + "Index_type": "BTREE", "columns": [ "key" - ] + ], + "Non_unique": "" } ] }, { "name": "api_regel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -12885,7 +13118,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -12918,7 +13151,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12929,7 +13162,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12940,7 +13173,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -12984,7 +13217,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13004,14 +13237,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "api_request", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13020,7 +13256,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -13086,7 +13322,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13097,7 +13333,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13119,7 +13355,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13130,7 +13366,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13174,7 +13410,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13205,26 +13441,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "uebertragung_account", + "Index_type": "BTREE", "columns": [ "uebertragung_account" - ] + ], + "Non_unique": "" }, { "Key_name": "parameter1int", + "Index_type": "BTREE", "columns": [ "parameter1int" - ] + ], + "Non_unique": "" } ] }, { "name": "api_request_response_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13233,7 +13476,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -13255,7 +13498,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13266,7 +13509,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13277,7 +13520,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13288,7 +13531,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13299,7 +13542,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13341,26 +13584,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "api_id", + "Index_type": "BTREE", "columns": [ "api_id" - ] + ], + "Non_unique": "" }, { "Key_name": "created_at", + "Index_type": "BTREE", "columns": [ "created_at" - ] + ], + "Non_unique": "" } ] }, { "name": "arbeitsfreietage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13369,7 +13619,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -13380,7 +13630,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13391,7 +13641,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13402,7 +13652,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13424,7 +13674,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13433,20 +13683,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "datum", + "Index_type": "BTREE", "columns": [ "datum" - ] + ], + "Non_unique": "" } ] }, { "name": "arbeitspaket", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13455,7 +13710,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -13466,7 +13721,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13474,10 +13729,10 @@ { "Field": "aufgabe", "Type": "varchar(255)", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13485,10 +13740,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13499,7 +13754,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13510,7 +13765,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13521,7 +13776,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13529,10 +13784,10 @@ { "Field": "status", "Type": "varchar(64)", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13543,7 +13798,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13554,7 +13809,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13565,7 +13820,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13576,7 +13831,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13587,7 +13842,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13598,7 +13853,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13609,7 +13864,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13631,7 +13886,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13642,7 +13897,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13653,7 +13908,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13664,7 +13919,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13675,7 +13930,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13796,7 +14051,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13862,7 +14117,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13873,7 +14128,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13893,20 +14148,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "projekt", + "Index_type": "BTREE", "columns": [ "projekt" - ] + ], + "Non_unique": "" } ] }, { "name": "article_label", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13915,7 +14175,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -13970,7 +14230,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -13979,14 +14239,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "article_property_translation", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -13995,7 +14258,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -14039,7 +14302,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14050,7 +14313,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14061,7 +14324,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14072,7 +14335,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14083,7 +14346,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14094,7 +14357,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14103,32 +14366,41 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "article_id", + "Index_type": "BTREE", "columns": [ "article_id" - ] + ], + "Non_unique": "" }, { "Key_name": "category_id", + "Index_type": "BTREE", "columns": [ "category_id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id" - ] + ], + "Non_unique": "" } ] }, { "name": "artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -14137,7 +14409,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -14148,7 +14420,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14159,7 +14431,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14170,7 +14442,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14181,7 +14453,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14192,7 +14464,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14203,7 +14475,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14214,7 +14486,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14225,7 +14497,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14236,7 +14508,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14247,7 +14519,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14258,7 +14530,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14269,7 +14541,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14280,7 +14552,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14291,7 +14563,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14302,7 +14574,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14313,7 +14585,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14324,7 +14596,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14335,7 +14607,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14346,7 +14618,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14357,7 +14629,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14368,7 +14640,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14379,7 +14651,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14390,7 +14662,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14401,7 +14673,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14412,7 +14684,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14423,7 +14695,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14434,7 +14706,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14445,7 +14717,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14456,7 +14728,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14467,7 +14739,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14478,7 +14750,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14489,7 +14761,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14500,7 +14772,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14511,7 +14783,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14522,7 +14794,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14533,7 +14805,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14544,7 +14816,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14555,7 +14827,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14566,7 +14838,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14577,7 +14849,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14588,7 +14860,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14599,7 +14871,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14610,7 +14882,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14621,7 +14893,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14632,7 +14904,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14643,7 +14915,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14654,7 +14926,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14665,7 +14937,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14676,7 +14948,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14687,7 +14959,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14698,7 +14970,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14709,7 +14981,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14720,7 +14992,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14731,7 +15003,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14742,7 +15014,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14753,7 +15025,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14764,7 +15036,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14775,7 +15047,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14786,7 +15058,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14797,7 +15069,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14808,7 +15080,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14819,7 +15091,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14830,7 +15102,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14841,7 +15113,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14852,7 +15124,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14863,7 +15135,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14874,7 +15146,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14885,7 +15157,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14896,7 +15168,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14907,7 +15179,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14918,7 +15190,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14929,7 +15201,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14940,7 +15212,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14951,7 +15223,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14973,7 +15245,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -14995,7 +15267,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15006,7 +15278,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15017,7 +15289,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15028,7 +15300,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15061,7 +15333,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15083,7 +15355,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15105,7 +15377,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15149,7 +15421,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15171,7 +15443,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15182,7 +15454,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15193,7 +15465,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15204,7 +15476,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15215,7 +15487,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15226,7 +15498,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15237,7 +15509,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15248,7 +15520,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15259,7 +15531,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15281,7 +15553,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15292,7 +15564,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15303,7 +15575,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15314,7 +15586,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15325,7 +15597,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15336,7 +15608,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15347,7 +15619,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15358,7 +15630,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15369,7 +15641,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15380,7 +15652,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15391,7 +15663,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15402,7 +15674,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15413,7 +15685,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15424,7 +15696,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15446,7 +15718,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15457,7 +15729,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15468,7 +15740,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15523,7 +15795,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15556,7 +15828,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15567,7 +15839,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15578,7 +15850,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15589,7 +15861,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15600,7 +15872,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15611,7 +15883,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15622,7 +15894,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15633,7 +15905,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15644,7 +15916,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15655,7 +15927,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15666,7 +15938,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15677,7 +15949,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15688,7 +15960,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15699,7 +15971,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15710,7 +15982,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15721,7 +15993,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15754,7 +16026,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15765,7 +16037,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15776,7 +16048,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15787,7 +16059,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15798,7 +16070,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15820,7 +16092,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15908,7 +16180,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15941,7 +16213,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15974,7 +16246,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -15985,7 +16257,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16029,7 +16301,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16062,7 +16334,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16073,7 +16345,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16084,7 +16356,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16095,7 +16367,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16106,7 +16378,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16117,7 +16389,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16128,7 +16400,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16139,7 +16411,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16150,7 +16422,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16161,7 +16433,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16172,7 +16444,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16183,7 +16455,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16194,7 +16466,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16205,7 +16477,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16216,7 +16488,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16227,7 +16499,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16238,7 +16510,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16249,7 +16521,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16260,7 +16532,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16271,7 +16543,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16282,7 +16554,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16293,7 +16565,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16304,7 +16576,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16315,7 +16587,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16326,7 +16598,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16337,7 +16609,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16348,7 +16620,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16359,7 +16631,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16370,7 +16642,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16381,7 +16653,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16392,7 +16664,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16403,7 +16675,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16414,7 +16686,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16425,7 +16697,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16436,7 +16708,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16447,7 +16719,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16458,7 +16730,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16469,7 +16741,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16480,7 +16752,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16491,7 +16763,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16513,7 +16785,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16524,7 +16796,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16546,7 +16818,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16579,7 +16851,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16656,7 +16928,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16687,62 +16959,81 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "projekt", + "Index_type": "BTREE", "columns": [ "projekt" - ] + ], + "Non_unique": "" }, { "Key_name": "nummer", + "Index_type": "BTREE", "columns": [ "nummer" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" }, { "Key_name": "laststorage_changed", + "Index_type": "BTREE", "columns": [ "laststorage_changed" - ] + ], + "Non_unique": "" }, { "Key_name": "laststorage_sync", + "Index_type": "BTREE", "columns": [ "laststorage_sync" - ] + ], + "Non_unique": "" }, { "Key_name": "variante_von", + "Index_type": "BTREE", "columns": [ "variante_von" - ] + ], + "Non_unique": "" }, { "Key_name": "herstellernummer", + "Index_type": "BTREE", "columns": [ "herstellernummer" - ] + ], + "Non_unique": "" }, { "Key_name": "geloescht", + "Index_type": "BTREE", "columns": [ "geloescht" - ] + ], + "Non_unique": "" } ] }, { "name": "artikel_arbeitsanweisung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -16751,7 +17042,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -16784,7 +17075,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16795,7 +17086,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16806,7 +17097,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16828,7 +17119,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16859,20 +17150,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "artikel_artikelgruppe", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -16881,7 +17177,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -16892,7 +17188,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16903,7 +17199,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16914,7 +17210,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16934,14 +17230,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "artikel_cached_fields", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -16950,7 +17249,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -16983,7 +17282,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -16994,7 +17293,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17005,7 +17304,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17016,7 +17315,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17027,7 +17326,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17038,7 +17337,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17049,7 +17348,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17060,7 +17359,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17071,7 +17370,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17082,7 +17381,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17093,7 +17392,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17137,7 +17436,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17289,20 +17588,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "artikel_freifelder", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -17311,7 +17615,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -17333,7 +17637,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17344,7 +17648,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17355,7 +17659,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17364,20 +17668,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "artikel_onlineshops", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -17386,7 +17695,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -17452,7 +17761,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17485,7 +17794,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17562,7 +17871,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17573,7 +17882,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17584,7 +17893,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17595,7 +17904,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17606,7 +17915,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17615,21 +17924,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel", "shop" - ] + ], + "Non_unique": "" } ] }, { "name": "artikel_permanenteinventur", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -17638,7 +17952,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -17682,7 +17996,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17693,7 +18007,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17702,26 +18016,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "lager_platz", + "Index_type": "BTREE", "columns": [ "lager_platz" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "artikel_shop", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -17730,7 +18051,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -17741,7 +18062,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17752,7 +18073,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17763,7 +18084,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17772,14 +18093,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "artikel_texte", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -17788,7 +18112,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -17810,7 +18134,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17821,7 +18145,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17832,7 +18156,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17843,7 +18167,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17854,7 +18178,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17865,7 +18189,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17876,7 +18200,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17887,7 +18211,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17909,7 +18233,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17920,7 +18244,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17931,7 +18255,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17951,26 +18275,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop", + "Index_type": "BTREE", "columns": [ "shop" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "artikel_zu_optionen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -17979,7 +18310,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -17990,7 +18321,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -17999,14 +18330,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "artikel_zu_optionengruppe", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18015,7 +18349,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18026,7 +18360,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18037,7 +18371,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18048,7 +18382,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18059,7 +18393,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18070,7 +18404,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18103,7 +18437,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18134,14 +18468,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "artikelbaum_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18150,7 +18487,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18192,21 +18529,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel", "kategorie" - ] + ], + "Non_unique": "" } ] }, { "name": "artikeleigenschaften", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18215,7 +18557,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18237,7 +18579,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18279,14 +18621,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "artikeleigenschaftenwerte", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18295,7 +18640,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18328,7 +18673,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18339,7 +18684,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18350,7 +18695,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18370,26 +18715,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikeleigenschaften", + "Index_type": "BTREE", "columns": [ "artikeleigenschaften" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "artikeleinheit", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18398,7 +18750,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18409,7 +18761,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18420,7 +18772,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18429,14 +18781,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "artikelgruppen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18445,7 +18800,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18456,7 +18811,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18467,7 +18822,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18478,7 +18833,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18489,7 +18844,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18500,7 +18855,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18511,7 +18866,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18520,20 +18875,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "id", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "artikelkalkulation", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18542,7 +18902,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18575,7 +18935,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18586,7 +18946,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18597,7 +18957,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18630,7 +18990,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18652,7 +19012,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18663,7 +19023,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18674,7 +19034,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18685,7 +19045,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18694,20 +19054,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "artikelkalkulation_menge", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18716,7 +19081,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18747,20 +19112,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "artikelkalkulation_tag", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18769,7 +19139,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18791,7 +19161,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18802,7 +19172,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18824,7 +19194,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18846,7 +19216,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18855,14 +19225,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "artikelkategorien", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -18871,7 +19244,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -18882,7 +19255,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18893,7 +19266,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18948,7 +19321,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18959,7 +19332,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18970,7 +19343,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18981,7 +19354,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -18992,7 +19365,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19003,7 +19376,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19014,7 +19387,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19025,7 +19398,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19036,7 +19409,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19047,7 +19420,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19058,7 +19431,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19069,7 +19442,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19080,7 +19453,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19091,7 +19464,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19102,7 +19475,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19113,7 +19486,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19124,7 +19497,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19135,7 +19508,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19144,20 +19517,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "parent", + "Index_type": "BTREE", "columns": [ "parent" - ] + ], + "Non_unique": "" } ] }, { "name": "artikelkontingente", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19166,7 +19544,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -19199,7 +19577,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19208,14 +19586,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "artikelnummer_fremdnummern", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19224,7 +19605,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -19246,7 +19627,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19257,7 +19638,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19279,7 +19660,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19321,32 +19702,41 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" }, { "Key_name": "shopid", + "Index_type": "BTREE", "columns": [ "shopid" - ] + ], + "Non_unique": "" }, { "Key_name": "nummer", + "Index_type": "BTREE", "columns": [ "nummer" - ] + ], + "Non_unique": "" } ] }, { "name": "artikeloptionen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19355,7 +19745,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -19366,7 +19756,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19377,7 +19767,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19388,7 +19778,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19399,7 +19789,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19432,7 +19822,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19463,14 +19853,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "artikeloptionengruppe", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19479,7 +19872,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -19490,7 +19883,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19501,7 +19894,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19512,7 +19905,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19523,7 +19916,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19534,7 +19927,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19545,7 +19938,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19556,7 +19949,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19587,14 +19980,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "aufgabe", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -19603,7 +19999,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -19614,7 +20010,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19625,7 +20021,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19636,7 +20032,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19647,7 +20043,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19658,7 +20054,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19669,7 +20065,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19680,7 +20076,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19691,7 +20087,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19702,7 +20098,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19713,7 +20109,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19724,7 +20120,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19735,7 +20131,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19746,7 +20142,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19757,7 +20153,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19768,7 +20164,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19779,7 +20175,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19790,7 +20186,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19812,7 +20208,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19823,7 +20219,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19834,7 +20230,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19845,7 +20241,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19856,7 +20252,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19867,7 +20263,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19878,7 +20274,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19889,7 +20285,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19900,7 +20296,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19911,7 +20307,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19922,7 +20318,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19966,7 +20362,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19988,7 +20384,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -19999,7 +20395,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20043,7 +20439,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20054,7 +20450,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20074,20 +20470,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "aufgabe_erledigt", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -20096,7 +20497,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -20107,7 +20508,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20118,7 +20519,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20129,7 +20530,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20149,14 +20550,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "auftrag", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -20165,7 +20569,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -20176,7 +20580,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20187,7 +20591,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20198,7 +20602,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20209,7 +20613,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20220,7 +20624,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20231,7 +20635,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20242,7 +20646,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20253,7 +20657,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20264,7 +20668,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20275,7 +20679,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20286,7 +20690,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20297,7 +20701,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20308,7 +20712,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20319,7 +20723,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20330,7 +20734,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20341,7 +20745,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20352,7 +20756,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20363,7 +20767,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20374,7 +20778,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20385,7 +20789,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20396,7 +20800,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20407,7 +20811,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20418,7 +20822,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20429,7 +20833,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20440,7 +20844,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20451,7 +20855,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20462,7 +20866,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20473,7 +20877,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20484,7 +20888,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20495,7 +20899,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20506,7 +20910,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20517,7 +20921,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20528,7 +20932,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20539,7 +20943,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20550,7 +20954,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20561,7 +20965,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20572,7 +20976,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20583,7 +20987,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20594,7 +20998,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20605,7 +21009,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20616,7 +21020,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20627,7 +21031,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20638,7 +21042,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20649,7 +21053,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20660,7 +21064,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20671,7 +21075,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20682,7 +21086,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20693,7 +21097,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20704,7 +21108,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20715,7 +21119,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20726,7 +21130,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20737,7 +21141,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20748,7 +21152,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20759,7 +21163,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20770,7 +21174,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20781,7 +21185,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20792,7 +21196,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20803,7 +21207,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20814,7 +21218,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20825,7 +21229,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20836,7 +21240,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20847,7 +21251,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20858,7 +21262,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20869,7 +21273,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20880,7 +21284,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20891,7 +21295,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20902,7 +21306,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20913,7 +21317,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20924,7 +21328,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20935,7 +21339,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20957,7 +21361,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20968,7 +21372,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20979,7 +21383,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -20990,7 +21394,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21001,7 +21405,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21012,7 +21416,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21023,7 +21427,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21034,7 +21438,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21045,7 +21449,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21056,7 +21460,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21067,7 +21471,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21078,7 +21482,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21089,7 +21493,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21100,7 +21504,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21111,7 +21515,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21122,7 +21526,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21144,7 +21548,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21155,7 +21559,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21166,7 +21570,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21177,7 +21581,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21188,7 +21592,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21199,7 +21603,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21210,7 +21614,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21221,7 +21625,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21232,7 +21636,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21243,7 +21647,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21254,7 +21658,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21265,7 +21669,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21276,7 +21680,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21287,7 +21691,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21298,7 +21702,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21309,7 +21713,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21320,7 +21724,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21331,7 +21735,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21353,7 +21757,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21364,7 +21768,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21386,7 +21790,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21452,7 +21856,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21463,7 +21867,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21551,7 +21955,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21562,7 +21966,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21573,7 +21977,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21584,7 +21988,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21617,7 +22021,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21628,7 +22032,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21639,7 +22043,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21650,7 +22054,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21661,7 +22065,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21683,7 +22087,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21694,7 +22098,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21705,7 +22109,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21716,7 +22120,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21727,7 +22131,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21738,7 +22142,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21749,7 +22153,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21760,7 +22164,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21837,7 +22241,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21848,7 +22252,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21859,7 +22263,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21914,7 +22318,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21925,7 +22329,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -21958,7 +22362,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22002,7 +22406,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22013,7 +22417,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22035,7 +22439,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22101,7 +22505,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22112,7 +22516,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22123,7 +22527,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22134,7 +22538,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22145,7 +22549,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22156,7 +22560,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22178,7 +22582,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22200,7 +22604,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22222,7 +22626,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22233,7 +22637,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22244,7 +22648,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22255,7 +22659,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22288,7 +22692,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22299,7 +22703,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22310,7 +22714,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22321,7 +22725,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22332,7 +22736,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22354,7 +22758,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22398,7 +22802,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22409,7 +22813,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22420,7 +22824,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22431,7 +22835,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22453,7 +22857,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22462,86 +22866,113 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "projekt", + "Index_type": "BTREE", "columns": [ "projekt" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" }, { "Key_name": "vertriebid", + "Index_type": "BTREE", "columns": [ "vertriebid" - ] + ], + "Non_unique": "" }, { "Key_name": "status", + "Index_type": "BTREE", "columns": [ "status" - ] + ], + "Non_unique": "" }, { "Key_name": "datum", + "Index_type": "BTREE", "columns": [ "datum" - ] + ], + "Non_unique": "" }, { "Key_name": "belegnr", + "Index_type": "BTREE", "columns": [ "belegnr" - ] + ], + "Non_unique": "" }, { "Key_name": "gesamtsumme", + "Index_type": "BTREE", "columns": [ "gesamtsumme" - ] + ], + "Non_unique": "" }, { "Key_name": "transaktionsnummer", + "Index_type": "BTREE", "columns": [ "transaktionsnummer" - ] + ], + "Non_unique": "" }, { "Key_name": "internet", + "Index_type": "BTREE", "columns": [ "internet" - ] + ], + "Non_unique": "" }, { "Key_name": "lieferantkdrnummer", + "Index_type": "BTREE", "columns": [ "lieferantkdrnummer" - ] + ], + "Non_unique": "" }, { "Key_name": "teillieferungvon", + "Index_type": "BTREE", "columns": [ "teillieferungvon" - ] + ], + "Non_unique": "" }, { "Key_name": "versandart", + "Index_type": "BTREE", "columns": [ "versandart" - ] + ], + "Non_unique": "" } ] }, { "name": "auftrag_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -22550,7 +22981,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -22561,7 +22992,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22572,7 +23003,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22583,7 +23014,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22594,7 +23025,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22605,7 +23036,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22616,7 +23047,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22627,7 +23058,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22638,7 +23069,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22660,7 +23091,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22671,7 +23102,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22682,7 +23113,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22693,7 +23124,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22704,7 +23135,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22715,7 +23146,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22726,7 +23157,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22737,7 +23168,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22748,7 +23179,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22759,7 +23190,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22770,7 +23201,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22792,7 +23223,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22803,7 +23234,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22814,7 +23245,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22825,7 +23256,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22836,7 +23267,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22847,7 +23278,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22858,7 +23289,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22869,7 +23300,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22880,7 +23311,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22891,7 +23322,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22902,7 +23333,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22913,7 +23344,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22924,7 +23355,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22935,7 +23366,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22946,7 +23377,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22979,7 +23410,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -22990,7 +23421,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23001,7 +23432,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23012,7 +23443,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23023,7 +23454,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23034,7 +23465,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23045,7 +23476,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23056,7 +23487,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23067,7 +23498,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23078,7 +23509,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23089,7 +23520,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23122,7 +23553,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23133,7 +23564,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23144,7 +23575,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23155,7 +23586,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23177,7 +23608,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23221,7 +23652,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23243,7 +23674,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23254,7 +23685,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23265,7 +23696,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23276,7 +23707,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23287,7 +23718,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23298,7 +23729,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23309,7 +23740,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23320,7 +23751,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23331,7 +23762,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23342,7 +23773,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23353,7 +23784,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23364,7 +23795,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23375,7 +23806,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23386,7 +23817,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23397,7 +23828,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23408,7 +23839,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23419,7 +23850,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23430,7 +23861,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23441,7 +23872,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23452,7 +23883,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23463,7 +23894,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23474,7 +23905,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23485,7 +23916,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23496,7 +23927,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23507,7 +23938,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23518,7 +23949,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23529,7 +23960,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23540,7 +23971,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23551,7 +23982,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23562,7 +23993,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23573,7 +24004,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23584,7 +24015,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23628,7 +24059,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23661,7 +24092,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23672,7 +24103,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23683,7 +24114,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23694,7 +24125,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23705,7 +24136,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23716,7 +24147,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23727,7 +24158,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23760,7 +24191,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23771,7 +24202,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23782,7 +24213,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23793,7 +24224,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23802,39 +24233,50 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "auftrag", + "Index_type": "BTREE", "columns": [ "auftrag", "artikel" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" }, { "Key_name": "auftrag_2", + "Index_type": "BTREE", "columns": [ "auftrag" - ] + ], + "Non_unique": "" }, { "Key_name": "explodiert_parent", + "Index_type": "BTREE", "columns": [ "explodiert_parent" - ] + ], + "Non_unique": "" } ] }, { "name": "auftrag_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -23843,7 +24285,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -23854,7 +24296,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23865,7 +24307,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23876,7 +24318,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23887,7 +24329,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23896,20 +24338,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "auftrag", + "Index_type": "BTREE", "columns": [ "auftrag" - ] + ], + "Non_unique": "" } ] }, { "name": "autoresponder_blacklist", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -23918,7 +24365,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -23940,7 +24387,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23949,14 +24396,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "backup", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -23965,7 +24415,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -23976,7 +24426,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23987,7 +24437,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -23998,7 +24448,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24009,7 +24459,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24018,14 +24468,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "beleg_chargesnmhd", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -24034,7 +24487,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -24045,7 +24498,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24078,7 +24531,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24089,7 +24542,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24100,7 +24553,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24111,7 +24564,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24122,7 +24575,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24133,7 +24586,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24166,7 +24619,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24175,44 +24628,57 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "doctypeid", + "Index_type": "BTREE", "columns": [ "doctypeid" - ] + ], + "Non_unique": "" }, { "Key_name": "pos", + "Index_type": "BTREE", "columns": [ "pos" - ] + ], + "Non_unique": "" }, { "Key_name": "type", + "Index_type": "BTREE", "columns": [ "type" - ] + ], + "Non_unique": "" }, { "Key_name": "type2", + "Index_type": "BTREE", "columns": [ "type2" - ] + ], + "Non_unique": "" }, { "Key_name": "wert", + "Index_type": "BTREE", "columns": [ "wert" - ] + ], + "Non_unique": "" } ] }, { "name": "beleg_zwischenpositionen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -24221,7 +24687,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -24232,7 +24698,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24243,7 +24709,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24254,7 +24720,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24265,7 +24731,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24276,7 +24742,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24287,7 +24753,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24296,20 +24762,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "doctypeid", + "Index_type": "BTREE", "columns": [ "doctypeid" - ] + ], + "Non_unique": "" } ] }, { "name": "belegeimport", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -24318,7 +24789,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -24362,7 +24833,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24373,7 +24844,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24384,7 +24855,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24395,7 +24866,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24406,7 +24877,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24417,7 +24888,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24428,7 +24899,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24439,7 +24910,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24450,7 +24921,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24461,7 +24932,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24472,7 +24943,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24483,7 +24954,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24494,7 +24965,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24505,7 +24976,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24516,7 +24987,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24527,7 +24998,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24538,7 +25009,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24549,7 +25020,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24560,7 +25031,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24571,7 +25042,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24582,7 +25053,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24593,7 +25064,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24604,7 +25075,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24626,7 +25097,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24637,7 +25108,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24648,7 +25119,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24659,7 +25130,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24670,7 +25141,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24681,7 +25152,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24692,7 +25163,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24714,7 +25185,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24725,7 +25196,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24736,7 +25207,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24747,7 +25218,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24802,7 +25273,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24813,7 +25284,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24835,7 +25306,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24846,7 +25317,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24857,7 +25328,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24868,7 +25339,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24879,7 +25350,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24890,7 +25361,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24901,7 +25372,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24912,7 +25383,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24923,7 +25394,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24934,7 +25405,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24945,7 +25416,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24956,7 +25427,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24967,7 +25438,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24978,7 +25449,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -24989,7 +25460,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25000,7 +25471,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25011,7 +25482,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25022,7 +25493,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25033,7 +25504,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25044,7 +25515,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25055,7 +25526,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25066,7 +25537,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25077,7 +25548,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25088,7 +25559,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25099,7 +25570,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25132,7 +25603,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25143,7 +25614,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25154,7 +25625,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25176,7 +25647,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25187,7 +25658,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25198,7 +25669,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25209,7 +25680,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25220,7 +25691,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25231,7 +25702,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25242,7 +25713,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25253,7 +25724,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25264,7 +25735,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25275,7 +25746,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25286,7 +25757,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25297,7 +25768,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25308,7 +25779,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25319,7 +25790,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25330,7 +25801,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25341,7 +25812,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25352,7 +25823,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25363,7 +25834,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25374,7 +25845,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25385,7 +25856,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25396,7 +25867,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25407,7 +25878,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25418,7 +25889,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25429,7 +25900,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25440,7 +25911,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25451,7 +25922,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25462,7 +25933,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25473,7 +25944,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25484,7 +25955,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25495,7 +25966,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25506,7 +25977,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25517,7 +25988,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25528,7 +25999,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25539,7 +26010,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25583,7 +26054,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25594,7 +26065,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25605,7 +26076,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25616,7 +26087,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25627,7 +26098,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25636,14 +26107,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "belegeimport_running", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -25652,7 +26126,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -25674,7 +26148,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25685,7 +26159,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25696,7 +26170,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25707,7 +26181,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25716,14 +26190,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] - }, + }, { "name": "belegevorlagen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -25732,7 +26209,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -25743,7 +26220,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25754,7 +26231,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25776,7 +26253,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25787,7 +26264,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25807,14 +26284,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "berichte", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -25823,7 +26303,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -25834,7 +26314,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25845,7 +26325,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25856,7 +26336,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25867,7 +26347,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25878,7 +26358,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25889,7 +26369,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25900,7 +26380,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25911,7 +26391,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25922,7 +26402,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25933,7 +26413,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -25955,7 +26435,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26010,7 +26490,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26021,7 +26501,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26032,7 +26512,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26043,7 +26523,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26054,7 +26534,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26065,7 +26545,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26076,7 +26556,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26098,7 +26578,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26109,7 +26589,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26120,7 +26600,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26131,7 +26611,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26142,7 +26622,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26162,20 +26642,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "doctype", + "Index_type": "BTREE", "columns": [ "doctype" - ] + ], + "Non_unique": "" } ] }, { "name": "bestbeforebatchtoposition", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -26184,7 +26669,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -26195,7 +26680,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26228,7 +26713,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26237,22 +26722,27 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "doctype", + "Index_type": "BTREE", "columns": [ "doctype", "doctype_id", "position_id" - ] + ], + "Non_unique": "" } ] }, { "name": "bestellung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -26261,7 +26751,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -26272,7 +26762,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26283,7 +26773,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26294,7 +26784,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26305,7 +26795,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26316,7 +26806,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26327,7 +26817,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26338,7 +26828,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26349,7 +26839,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26360,7 +26850,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26371,7 +26861,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26382,7 +26872,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26393,7 +26883,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26404,7 +26894,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26415,7 +26905,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26426,7 +26916,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26437,7 +26927,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26448,7 +26938,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26459,7 +26949,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26470,7 +26960,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26481,7 +26971,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26492,7 +26982,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26503,7 +26993,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26514,7 +27004,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26525,7 +27015,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26536,7 +27026,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26547,7 +27037,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26558,7 +27048,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26569,7 +27059,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26580,7 +27070,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26591,7 +27081,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26602,7 +27092,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26613,7 +27103,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26624,7 +27114,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26635,7 +27125,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26646,7 +27136,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26657,7 +27147,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26668,7 +27158,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26679,7 +27169,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26690,7 +27180,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26701,7 +27191,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26712,7 +27202,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26723,7 +27213,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26734,7 +27224,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26745,7 +27235,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26756,7 +27246,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26767,7 +27257,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26789,7 +27279,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26800,7 +27290,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26811,7 +27301,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26822,7 +27312,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26833,7 +27323,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26844,7 +27334,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26855,7 +27345,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26866,7 +27356,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26877,7 +27367,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26888,7 +27378,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26899,7 +27389,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26921,7 +27411,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26932,7 +27422,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26943,7 +27433,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -26954,7 +27444,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27031,7 +27521,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27097,7 +27587,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27108,7 +27598,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27141,7 +27631,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27152,7 +27642,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27163,7 +27653,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27174,7 +27664,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27196,7 +27686,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27207,7 +27697,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27229,7 +27719,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27240,7 +27730,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27251,7 +27741,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27295,7 +27785,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27306,7 +27796,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27317,7 +27807,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27328,7 +27818,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27339,7 +27829,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27350,7 +27840,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27372,7 +27862,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27383,7 +27873,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27392,50 +27882,65 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "projekt", + "Index_type": "BTREE", "columns": [ "projekt" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" }, { "Key_name": "status", + "Index_type": "BTREE", "columns": [ "status" - ] + ], + "Non_unique": "" }, { "Key_name": "datum", + "Index_type": "BTREE", "columns": [ "datum" - ] + ], + "Non_unique": "" }, { "Key_name": "belegnr", + "Index_type": "BTREE", "columns": [ "belegnr" - ] + ], + "Non_unique": "" }, { "Key_name": "versandart", + "Index_type": "BTREE", "columns": [ "versandart" - ] + ], + "Non_unique": "" } ] }, { "name": "bestellung_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -27444,7 +27949,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -27455,7 +27960,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27466,7 +27971,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27477,7 +27982,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27488,7 +27993,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27499,7 +28004,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27510,7 +28015,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27521,7 +28026,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27543,7 +28048,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27554,7 +28059,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27565,7 +28070,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27576,7 +28081,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27587,7 +28092,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27598,7 +28103,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27609,7 +28114,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27620,7 +28125,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27631,7 +28136,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27642,7 +28147,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27653,7 +28158,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27675,7 +28180,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27686,7 +28191,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27719,7 +28224,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27752,7 +28257,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27763,7 +28268,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27774,7 +28279,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27785,7 +28290,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27796,7 +28301,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27807,7 +28312,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27818,7 +28323,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27829,7 +28334,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27840,7 +28345,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27851,7 +28356,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27862,7 +28367,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27873,7 +28378,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27884,7 +28389,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27906,7 +28411,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27917,7 +28422,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27928,7 +28433,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27939,7 +28444,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27961,7 +28466,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27972,7 +28477,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27983,7 +28488,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -27994,7 +28499,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28005,7 +28510,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28016,7 +28521,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28027,7 +28532,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28038,7 +28543,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28049,7 +28554,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28060,7 +28565,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28071,7 +28576,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28082,7 +28587,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28093,7 +28598,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28104,7 +28609,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28115,7 +28620,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28126,7 +28631,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28137,7 +28642,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28148,7 +28653,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28159,7 +28664,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28170,7 +28675,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28181,7 +28686,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28192,7 +28697,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28203,7 +28708,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28214,7 +28719,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28225,7 +28730,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28236,7 +28741,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28247,7 +28752,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28258,7 +28763,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28269,7 +28774,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28280,7 +28785,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28291,7 +28796,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28302,7 +28807,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28313,7 +28818,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28324,7 +28829,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28335,7 +28840,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28344,33 +28849,42 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "bestellung", + "Index_type": "BTREE", "columns": [ "bestellung", "artikel" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" }, { "Key_name": "bestellung_2", + "Index_type": "BTREE", "columns": [ "bestellung" - ] + ], + "Non_unique": "" } ] }, { "name": "bestellung_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -28379,7 +28893,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -28390,7 +28904,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28401,7 +28915,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28412,7 +28926,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28423,7 +28937,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28432,20 +28946,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "bestellung", + "Index_type": "BTREE", "columns": [ "bestellung" - ] + ], + "Non_unique": "" } ] }, - { + { "name": "bestellvorschlag", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -28489,12 +29008,14 @@ "columns": [ "artikel", "user" - ] + ], + "Non_unique": "" } ] }, { "name": "bestellvorschlag_app", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -28503,7 +29024,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -28657,7 +29178,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28679,7 +29200,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28765,26 +29286,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" }, { "Key_name": "user", + "Index_type": "BTREE", "columns": [ "user" - ] + ], + "Non_unique": "" } ] }, { "name": "bestellvorschlag_app_staffeln", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -28793,7 +29321,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -28846,20 +29374,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "boxnachrichten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -28868,7 +29401,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -28901,7 +29434,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28912,7 +29445,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28956,7 +29489,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -28987,14 +29520,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "bundesstaaten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29003,7 +29539,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29014,7 +29550,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29025,7 +29561,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29036,7 +29572,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29056,14 +29592,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "caldav_changes", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29072,7 +29611,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29083,7 +29622,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29094,7 +29633,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29103,14 +29642,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "calendar", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29119,7 +29661,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29139,14 +29681,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "change_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29155,7 +29700,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29166,7 +29711,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29177,7 +29722,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29188,7 +29733,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29199,7 +29744,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29230,20 +29775,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "tableid", + "Index_type": "BTREE", "columns": [ "tableid" - ] + ], + "Non_unique": "" } ] }, { "name": "change_log_field", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29252,7 +29802,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29274,7 +29824,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29285,7 +29835,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29296,7 +29846,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29305,20 +29855,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "change_log", + "Index_type": "BTREE", "columns": [ "change_log" - ] + ], + "Non_unique": "" } ] }, { "name": "chargen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29327,7 +29882,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29338,7 +29893,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29349,7 +29904,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29360,7 +29915,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29371,7 +29926,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29382,7 +29937,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29393,7 +29948,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29404,7 +29959,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29415,7 +29970,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29424,14 +29979,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "chargen_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29440,7 +29998,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29484,7 +30042,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29495,7 +30053,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29506,7 +30064,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29550,7 +30108,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29603,26 +30161,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "doctypeid", + "Index_type": "BTREE", "columns": [ "doctypeid" - ] + ], + "Non_unique": "" }, { "Key_name": "doctype", + "Index_type": "BTREE", "columns": [ "doctype" - ] + ], + "Non_unique": "" } ] }, { "name": "chargenverwaltung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29631,7 +30196,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29642,7 +30207,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29653,7 +30218,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29664,7 +30229,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29675,7 +30240,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29686,7 +30251,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29697,7 +30262,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29717,14 +30282,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "chat", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29733,7 +30301,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29766,7 +30334,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29777,7 +30345,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29797,26 +30365,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "user_from", + "Index_type": "BTREE", "columns": [ "user_from" - ] + ], + "Non_unique": "" }, { "Key_name": "user_to", + "Index_type": "BTREE", "columns": [ "user_to" - ] + ], + "Non_unique": "" } ] }, { "name": "chat_gelesen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29825,7 +30400,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29858,7 +30433,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29867,27 +30442,34 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "user", + "Index_type": "BTREE", "columns": [ "user", "message" - ] + ], + "Non_unique": "UNIQUE" }, { "Key_name": "message", + "Index_type": "BTREE", "columns": [ "message" - ] + ], + "Non_unique": "" } ] }, { "name": "checkaltertable", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29896,7 +30478,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29907,7 +30489,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29916,14 +30498,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "collectivedebitor", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -29932,7 +30517,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -29943,7 +30528,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29965,7 +30550,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29976,7 +30561,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29987,7 +30572,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -29998,7 +30583,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30029,14 +30614,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "cronjob_kommissionierung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30045,7 +30633,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30067,7 +30655,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30076,14 +30664,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "cronjob_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30092,7 +30683,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30147,7 +30738,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30169,7 +30760,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30178,21 +30769,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "cronjob_id", + "Index_type": "BTREE", "columns": [ "cronjob_id", "change_time" - ] + ], + "Non_unique": "" } ] }, { "name": "cronjob_starter_running", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30201,7 +30797,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30212,7 +30808,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30234,7 +30830,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30265,21 +30861,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "uid", + "Index_type": "BTREE", "columns": [ "uid", "type" - ] + ], + "Non_unique": "" } ] }, { "name": "datei", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30288,7 +30889,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30299,7 +30900,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30310,7 +30911,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30321,7 +30922,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30332,7 +30933,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30354,7 +30955,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30363,14 +30964,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "datei_stichwoerter", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30379,7 +30983,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30390,7 +30994,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30401,7 +31005,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30412,7 +31016,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30423,7 +31027,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30467,7 +31071,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30476,26 +31080,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "datei", + "Index_type": "BTREE", "columns": [ "datei" - ] + ], + "Non_unique": "" }, { "Key_name": "parameter", + "Index_type": "BTREE", "columns": [ "parameter" - ] + ], + "Non_unique": "" } ] }, { "name": "datei_stichwortvorlagen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30504,7 +31115,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30515,7 +31126,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30537,7 +31148,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30546,14 +31157,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "datei_version", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30562,7 +31176,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30573,7 +31187,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30584,7 +31198,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30595,7 +31209,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30606,7 +31220,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30617,7 +31231,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30628,7 +31242,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30650,7 +31264,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30659,20 +31273,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "datei", + "Index_type": "BTREE", "columns": [ "datei" - ] + ], + "Non_unique": "" } ] }, { "name": "dateibaum", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30681,7 +31300,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30703,7 +31322,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30712,14 +31331,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "datev_buchungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30728,7 +31350,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30739,7 +31361,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30750,7 +31372,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30761,7 +31383,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30772,7 +31394,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30783,7 +31405,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30794,7 +31416,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30805,7 +31427,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30816,7 +31438,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30827,7 +31449,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30838,7 +31460,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30849,7 +31471,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30860,7 +31482,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30871,7 +31493,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30882,7 +31504,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30893,7 +31515,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30904,7 +31526,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30915,7 +31537,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30926,7 +31548,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30935,14 +31557,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "datevconnect_online_export", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -30951,7 +31576,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -30962,7 +31587,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30984,7 +31609,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -30993,14 +31618,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "delivery_problemcase", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31009,7 +31637,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31020,7 +31648,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31040,14 +31668,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "device_jobs", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31056,7 +31687,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31067,7 +31698,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31078,7 +31709,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31089,7 +31720,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31100,7 +31731,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31122,7 +31753,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31142,14 +31773,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "docscan", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31158,7 +31792,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31169,7 +31803,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31180,7 +31814,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31189,14 +31823,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "docscan_metadata", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31205,7 +31842,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31216,7 +31853,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31227,7 +31864,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31238,7 +31875,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31247,14 +31884,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "document_customization_infoblock", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31263,7 +31903,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31274,7 +31914,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31285,7 +31925,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31296,7 +31936,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31307,7 +31947,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31318,7 +31958,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31349,14 +31989,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "document_customization_infoblock_translation", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31365,7 +32008,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31387,7 +32030,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31398,7 +32041,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31420,7 +32063,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31431,7 +32074,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31440,20 +32083,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "document_customization_infoblock_id", + "Index_type": "BTREE", "columns": [ "document_customization_infoblock_id" - ] + ], + "Non_unique": "" } ] }, { "name": "dokumente", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31462,7 +32110,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31473,7 +32121,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31484,7 +32132,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31495,7 +32143,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31506,7 +32154,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31517,7 +32165,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31528,7 +32176,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31539,7 +32187,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31550,7 +32198,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31561,7 +32209,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31572,7 +32220,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31583,7 +32231,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31594,7 +32242,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31605,7 +32253,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31616,7 +32264,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31627,7 +32275,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31638,7 +32286,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31649,7 +32297,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31660,7 +32308,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31671,7 +32319,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31682,7 +32330,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31715,7 +32363,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31726,7 +32374,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31737,7 +32385,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31748,7 +32396,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31759,7 +32407,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31770,7 +32418,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31792,7 +32440,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31801,20 +32449,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse_to", + "Index_type": "BTREE", "columns": [ "adresse_to" - ] + ], + "Non_unique": "" } ] }, { "name": "dokumente_send", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -31823,7 +32476,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -31834,7 +32487,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31845,7 +32498,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31856,7 +32509,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31867,7 +32520,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31878,7 +32531,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31889,7 +32542,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31900,7 +32553,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31911,7 +32564,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31922,7 +32575,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31933,7 +32586,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31944,7 +32597,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31955,7 +32608,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31977,7 +32630,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -31986,20 +32639,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "dropshipping", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32008,7 +32666,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -32039,20 +32697,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "gruppe", + "Index_type": "BTREE", "columns": [ "gruppe" - ] + ], + "Non_unique": "" } ] }, { "name": "dropshipping_gruppe", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32061,7 +32724,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -32072,7 +32735,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32323,20 +32986,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "drucker", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32345,7 +33013,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -32356,7 +33024,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32367,7 +33035,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32378,7 +33046,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32389,7 +33057,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32400,7 +33068,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32411,7 +33079,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32422,7 +33090,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32433,7 +33101,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32444,7 +33112,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32455,7 +33123,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32466,7 +33134,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32477,7 +33145,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32510,7 +33178,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32532,7 +33200,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32541,14 +33209,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "drucker_spooler", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32557,7 +33228,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -32579,7 +33250,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32590,7 +33261,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32601,7 +33272,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32612,7 +33283,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32623,7 +33294,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32634,7 +33305,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32645,7 +33316,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32676,26 +33347,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "drucker", + "Index_type": "BTREE", "columns": [ "drucker" - ] + ], + "Non_unique": "" }, { "Key_name": "user", + "Index_type": "BTREE", "columns": [ "user" - ] + ], + "Non_unique": "" } ] }, { "name": "dsgvo_loeschauftrag", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32704,7 +33382,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -32726,7 +33404,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32737,7 +33415,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32746,14 +33424,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "dta", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -32762,7 +33443,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -32773,7 +33454,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32784,7 +33465,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32795,7 +33476,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32806,7 +33487,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32817,7 +33498,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32828,7 +33509,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32839,7 +33520,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32850,7 +33531,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32861,7 +33542,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32872,7 +33553,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32883,7 +33564,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32894,7 +33575,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32905,7 +33586,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32916,7 +33597,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32927,7 +33608,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32938,7 +33619,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32982,7 +33663,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -32993,7 +33674,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33002,14 +33683,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "dta_datei", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33018,7 +33702,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33029,7 +33713,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33040,7 +33724,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33051,7 +33735,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33062,7 +33746,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33073,7 +33757,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33084,7 +33768,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33095,7 +33779,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33115,14 +33799,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "dta_datei_verband", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33131,7 +33818,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33142,7 +33829,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33153,7 +33840,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33164,7 +33851,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33175,7 +33862,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33186,7 +33873,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33197,7 +33884,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33208,7 +33895,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33219,7 +33906,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33263,7 +33950,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33274,7 +33961,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33283,14 +33970,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "eangenerator", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33299,7 +33989,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33310,7 +34000,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33330,14 +34020,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_articles_to_sync", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33346,7 +34039,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33357,7 +34050,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33368,7 +34061,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33379,7 +34072,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33390,7 +34083,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33410,26 +34103,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "article_id", + "Index_type": "BTREE", "columns": [ "article_id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_artikelzuordnungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33438,7 +34138,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33449,7 +34149,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33460,7 +34160,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33471,7 +34171,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33482,7 +34182,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33493,7 +34193,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33504,7 +34204,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33535,14 +34235,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_auktionen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33551,7 +34254,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33562,7 +34265,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33573,7 +34276,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33584,7 +34287,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33595,7 +34298,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33606,7 +34309,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33617,7 +34320,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33628,7 +34331,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33639,7 +34342,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33650,7 +34353,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33716,7 +34419,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33736,14 +34439,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_bulk_call", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33752,7 +34458,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33763,7 +34469,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33774,7 +34480,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33785,7 +34491,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33796,7 +34502,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33816,20 +34522,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_bulk_jobs", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -33838,7 +34549,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -33849,7 +34560,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33860,7 +34571,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33871,7 +34582,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33882,7 +34593,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33893,7 +34604,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33904,7 +34615,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33915,7 +34626,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33926,7 +34637,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33937,7 +34648,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33948,7 +34659,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -33979,26 +34690,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "job_id", + "Index_type": "BTREE", "columns": [ "job_id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_fee_overview", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34007,7 +34725,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34018,7 +34736,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34029,7 +34747,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34040,7 +34758,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34051,7 +34769,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34062,7 +34780,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34073,7 +34791,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34095,7 +34813,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34104,14 +34822,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_kategoriespezifisch", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34120,7 +34841,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34131,7 +34852,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34142,7 +34863,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34153,7 +34874,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34164,7 +34885,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34175,7 +34896,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34186,7 +34907,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34197,7 +34918,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34208,7 +34929,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34230,7 +34951,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34241,7 +34962,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34261,14 +34982,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_kategorievorschlag", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34277,7 +35001,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34288,7 +35012,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34299,7 +35023,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34310,7 +35034,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34321,7 +35045,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34332,7 +35056,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34343,7 +35067,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34363,14 +35087,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_kategoriezustand", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34379,7 +35106,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34390,7 +35117,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34401,7 +35128,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34412,7 +35139,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34423,7 +35150,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34432,14 +35159,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_picture_hosting_service", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34448,7 +35178,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34459,7 +35189,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34470,7 +35200,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34481,7 +35211,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34492,7 +35222,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34501,32 +35231,41 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "ebay_staging_listing_id", + "Index_type": "BTREE", "columns": [ "ebay_staging_listing_id" - ] + ], + "Non_unique": "" }, { "Key_name": "ebay_staging_listing_variation_id", + "Index_type": "BTREE", "columns": [ "ebay_staging_listing_variation_id" - ] + ], + "Non_unique": "" }, { "Key_name": "file_id", + "Index_type": "BTREE", "columns": [ "file_id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_rahmenbedingungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34535,7 +35274,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34546,7 +35285,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34568,7 +35307,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34579,7 +35318,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34590,7 +35329,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34601,7 +35340,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34612,7 +35351,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34623,7 +35362,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34632,14 +35371,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_rest_token", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34648,7 +35390,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34659,7 +35401,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34670,7 +35412,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34681,7 +35423,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34692,7 +35434,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34701,14 +35443,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_staging_listing", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -34717,7 +35462,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -34728,7 +35473,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34739,7 +35484,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34761,7 +35506,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34772,7 +35517,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34783,7 +35528,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34794,7 +35539,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34805,7 +35550,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34816,7 +35561,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34827,7 +35572,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34838,7 +35583,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34882,7 +35627,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34893,7 +35638,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34904,7 +35649,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34915,7 +35660,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34926,7 +35671,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34937,7 +35682,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34948,7 +35693,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34959,7 +35704,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34970,7 +35715,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34981,7 +35726,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -34992,7 +35737,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35003,7 +35748,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35012,26 +35757,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "article_id", + "Index_type": "BTREE", "columns": [ "article_id" - ] + ], + "Non_unique": "" }, { "Key_name": "template_id", + "Index_type": "BTREE", "columns": [ "template_id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_staging_listing_specific", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35040,7 +35792,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35051,7 +35803,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35062,7 +35814,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35073,7 +35825,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35082,20 +35834,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "ebay_staging_listing_id", + "Index_type": "BTREE", "columns": [ "ebay_staging_listing_id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_staging_listing_variant", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35104,7 +35861,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35115,7 +35872,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35126,7 +35883,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35137,7 +35894,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35148,7 +35905,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35157,26 +35914,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "article_id", + "Index_type": "BTREE", "columns": [ "article_id" - ] + ], + "Non_unique": "" }, { "Key_name": "ebay_staging_listing_id", + "Index_type": "BTREE", "columns": [ "ebay_staging_listing_id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_staging_listing_variant_specific", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35185,7 +35949,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35196,7 +35960,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35207,7 +35971,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35218,7 +35982,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35227,14 +35991,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_storekategorien", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35243,7 +36010,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35254,7 +36021,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35265,7 +36032,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35276,7 +36043,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35287,7 +36054,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35296,14 +36063,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_template", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35312,7 +36082,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35323,7 +36093,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35334,7 +36104,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35345,7 +36115,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35354,14 +36124,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_variantenbilder", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35370,7 +36143,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35381,7 +36154,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35392,7 +36165,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35403,7 +36176,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35412,14 +36185,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_versand", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35428,7 +36204,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35439,7 +36215,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35450,7 +36226,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35461,7 +36237,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35494,7 +36270,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35505,7 +36281,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35536,14 +36312,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ebay_versand_zuordnung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35552,7 +36331,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35594,14 +36373,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "eigenschaften", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35610,7 +36392,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35643,7 +36425,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35654,7 +36436,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35665,7 +36447,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35676,7 +36458,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35685,14 +36467,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "einkaufspreise", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -35701,7 +36486,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -35712,7 +36497,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35723,7 +36508,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35734,7 +36519,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35745,7 +36530,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35767,7 +36552,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35800,7 +36585,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35811,7 +36596,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35822,7 +36607,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35833,7 +36618,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35844,7 +36629,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35855,7 +36640,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35866,7 +36651,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35877,7 +36662,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35888,7 +36673,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35899,7 +36684,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35910,7 +36695,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35932,7 +36717,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35943,7 +36728,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35954,7 +36739,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35987,7 +36772,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -35998,7 +36783,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36020,7 +36805,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36042,7 +36827,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36053,7 +36838,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36062,38 +36847,49 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" }, { "Key_name": "projekt", + "Index_type": "BTREE", "columns": [ "projekt" - ] + ], + "Non_unique": "" }, { "Key_name": "bestellnummer", + "Index_type": "BTREE", "columns": [ "bestellnummer" - ] + ], + "Non_unique": "" } ] }, { "name": "emailbackup", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36102,7 +36898,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -36113,7 +36909,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36124,7 +36920,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36135,7 +36931,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36146,7 +36942,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36157,7 +36953,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36168,7 +36964,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36179,7 +36975,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36190,7 +36986,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36234,7 +37030,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36245,7 +37041,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36256,7 +37052,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36267,7 +37063,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36278,7 +37074,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36289,7 +37085,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36300,7 +37096,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36311,7 +37107,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36322,7 +37118,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36333,7 +37129,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36366,7 +37162,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36377,7 +37173,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36432,7 +37228,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36443,7 +37239,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36454,7 +37250,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36465,7 +37261,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36476,7 +37272,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36520,7 +37316,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36542,7 +37338,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36553,7 +37349,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36562,14 +37358,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "emailbackup_mails", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36578,7 +37377,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -36589,7 +37388,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36600,7 +37399,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36611,7 +37410,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36622,7 +37421,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36633,7 +37432,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36644,7 +37443,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36655,7 +37454,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36688,7 +37487,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36732,7 +37531,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36743,7 +37542,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36754,7 +37553,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36809,7 +37608,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36820,7 +37619,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36829,62 +37628,81 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "webmail", + "Index_type": "BTREE", "columns": [ "webmail" - ] + ], + "Non_unique": "" }, { "Key_name": "gelesen", + "Index_type": "BTREE", "columns": [ "gelesen" - ] + ], + "Non_unique": "" }, { "Key_name": "spam", + "Index_type": "BTREE", "columns": [ "spam" - ] + ], + "Non_unique": "" }, { "Key_name": "geloescht", + "Index_type": "BTREE", "columns": [ "geloescht" - ] + ], + "Non_unique": "" }, { "Key_name": "antworten", + "Index_type": "BTREE", "columns": [ "antworten" - ] + ], + "Non_unique": "" }, { "Key_name": "warteschlange", + "Index_type": "BTREE", "columns": [ "warteschlange" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" }, { "Key_name": "checksum", + "Index_type": "BTREE", "columns": [ "checksum" - ] + ], + "Non_unique": "" } ] }, { "name": "epost_files", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36893,7 +37711,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -36904,7 +37722,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36926,7 +37744,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36937,7 +37755,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36946,14 +37764,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "etiketten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -36962,7 +37783,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -36973,7 +37794,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36984,7 +37805,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -36995,7 +37816,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37017,7 +37838,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37083,7 +37904,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37114,14 +37935,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "etsy_taxonomy", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37130,7 +37954,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -37141,7 +37965,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37152,7 +37976,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37163,7 +37987,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37174,7 +37998,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37185,7 +38009,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37205,14 +38029,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "etsy_transaction", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37221,7 +38048,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -37232,7 +38059,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37243,7 +38070,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37254,7 +38081,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37265,7 +38092,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37276,7 +38103,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37287,7 +38114,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37298,7 +38125,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37307,14 +38134,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "event", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37323,7 +38153,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -37334,7 +38164,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37345,7 +38175,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37356,7 +38186,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37367,7 +38197,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37378,7 +38208,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37389,7 +38219,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37398,14 +38228,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "event_api", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37414,7 +38247,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -37436,7 +38269,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37447,7 +38280,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37458,7 +38291,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37469,7 +38302,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37480,7 +38313,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37491,7 +38324,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37511,14 +38344,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "exportlink_sent", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37527,7 +38363,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37538,7 +38374,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37549,7 +38385,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37560,7 +38396,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37571,7 +38407,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37582,7 +38418,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37593,7 +38429,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37604,7 +38440,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37614,6 +38450,7 @@ }, { "name": "exportvorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37622,7 +38459,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -37633,7 +38470,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37644,7 +38481,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37655,7 +38492,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37666,7 +38503,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37677,7 +38514,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37688,7 +38525,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37699,7 +38536,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37710,7 +38547,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37721,7 +38558,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37732,7 +38569,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37743,7 +38580,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37785,14 +38622,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "extended_approval_protocol", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37801,7 +38641,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -37823,7 +38663,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37834,7 +38674,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37867,7 +38707,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37889,7 +38729,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37909,14 +38749,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "extended_approval_responsibility", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -37925,7 +38768,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -37936,7 +38779,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37947,7 +38790,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -37980,7 +38823,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38011,14 +38854,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "fee_reduction", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38027,7 +38873,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -38038,7 +38884,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38093,7 +38939,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38104,7 +38950,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38115,7 +38961,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38135,32 +38981,41 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "doctype", + "Index_type": "BTREE", "columns": [ "doctype" - ] + ], + "Non_unique": "" }, { "Key_name": "doctype_id", + "Index_type": "BTREE", "columns": [ "doctype_id" - ] + ], + "Non_unique": "" }, { "Key_name": "price_type", + "Index_type": "BTREE", "columns": [ "price_type" - ] + ], + "Non_unique": "" } ] }, { - "name": "file_link", + "name": "fibu_buchungen", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38169,7 +39024,145 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, + "Extra": "auto_increment", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "von_typ", + "Type": "varchar(64)", + "Collation": "utf8mb3_general_ci", + "Null": "NO", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "von_id", + "Type": "int(11)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "nach_typ", + "Type": "varchar(64)", + "Collation": "utf8mb3_general_ci", + "Null": "NO", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "nach_id", + "Type": "int(11)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "betrag", + "Type": "decimal(10,2)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "waehrung", + "Type": "varchar(10)", + "Collation": "utf8mb3_general_ci", + "Null": "NO", + "Key": "", + "Default": "'EUR'", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "benutzer", + "Type": "int(11)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "zeit", + "Type": "datetime", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "internebemerkung", + "Type": "varchar(128)", + "Collation": "utf8mb3_general_ci", + "Null": "NO", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "datum", + "Type": "date", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + } + ], + "keys": [ + { + "Key_name": "PRIMARY", + "Index_type": "BTREE", + "columns": [ + "id" + ], + "Non_unique": "" + } + ] + }, + { + "name": "file_link", + "collation": "utf8mb3_general_ci", + "type": "BASE TABLE", + "columns": [ + { + "Field": "id", + "Type": "int(11)", + "Collation": null, + "Null": "NO", + "Key": "PRI", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -38191,7 +39184,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38202,7 +39195,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38213,7 +39206,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38222,14 +39215,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "firma", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38238,7 +39234,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -38249,7 +39245,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38260,7 +39256,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38269,14 +39265,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "firmendaten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -38285,7 +39284,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -38296,7 +39295,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38307,7 +39306,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38318,7 +39317,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38329,7 +39328,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38340,7 +39339,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38351,7 +39350,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38362,7 +39361,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38384,7 +39383,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38395,7 +39394,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38461,7 +39460,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38472,7 +39471,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38483,7 +39482,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38505,7 +39504,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38516,7 +39515,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38527,7 +39526,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38703,7 +39702,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38714,7 +39713,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38725,7 +39724,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38736,7 +39735,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38747,7 +39746,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38758,7 +39757,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38769,7 +39768,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38780,7 +39779,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38791,7 +39790,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38802,7 +39801,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38813,7 +39812,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38824,7 +39823,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38835,7 +39834,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38846,7 +39845,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38857,7 +39856,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38868,7 +39867,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38879,7 +39878,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38890,7 +39889,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38901,7 +39900,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38912,7 +39911,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38923,7 +39922,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38934,7 +39933,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38945,7 +39944,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38956,7 +39955,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38967,7 +39966,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38978,7 +39977,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -38989,7 +39988,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39000,7 +39999,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39011,7 +40010,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39022,7 +40021,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39033,7 +40032,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39044,7 +40043,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39055,7 +40054,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39066,7 +40065,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39077,7 +40076,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39088,7 +40087,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39099,7 +40098,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39110,7 +40109,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39121,7 +40120,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39132,7 +40131,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39143,7 +40142,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39154,7 +40153,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39165,7 +40164,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39176,7 +40175,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39187,7 +40186,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39198,7 +40197,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39209,7 +40208,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39220,7 +40219,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39231,7 +40230,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39242,7 +40241,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39253,7 +40252,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39264,7 +40263,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39275,7 +40274,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39286,7 +40285,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39297,7 +40296,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39308,7 +40307,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39319,7 +40318,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39330,7 +40329,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39341,7 +40340,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39352,7 +40351,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39363,7 +40362,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39374,7 +40373,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39385,7 +40384,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39396,7 +40395,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39407,7 +40406,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39451,7 +40450,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39462,7 +40461,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39473,7 +40472,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39484,7 +40483,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39495,7 +40494,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39506,7 +40505,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39517,7 +40516,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39528,7 +40527,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39539,7 +40538,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39550,7 +40549,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39561,7 +40560,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39572,7 +40571,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39583,7 +40582,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39594,7 +40593,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39605,7 +40604,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39616,7 +40615,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39627,7 +40626,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39638,7 +40637,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39649,7 +40648,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39660,7 +40659,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39671,7 +40670,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39682,7 +40681,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39693,7 +40692,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39704,7 +40703,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39715,7 +40714,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39726,7 +40725,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39737,7 +40736,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39748,7 +40747,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39759,7 +40758,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39770,7 +40769,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39781,7 +40780,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39792,7 +40791,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39803,7 +40802,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39814,7 +40813,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39825,7 +40824,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39836,7 +40835,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39847,7 +40846,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39858,7 +40857,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39869,7 +40868,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39880,7 +40879,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39891,7 +40890,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39902,7 +40901,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39913,7 +40912,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39924,7 +40923,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39935,7 +40934,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39946,7 +40945,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39957,7 +40956,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -39966,14 +40965,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "firmendaten_werte", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -39982,7 +40984,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -39993,7 +40995,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40004,7 +41006,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40015,7 +41017,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40026,7 +41028,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40037,7 +41039,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40048,7 +41050,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40079,14 +41081,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "formeln", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40095,7 +41100,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40106,7 +41111,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40117,7 +41122,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40128,7 +41133,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40139,7 +41144,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40148,20 +41153,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "kennung", + "Index_type": "BTREE", "columns": [ "kennung" - ] + ], + "Non_unique": "" } ] }, { "name": "formula_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40170,7 +41180,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40181,7 +41191,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40192,7 +41202,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40203,7 +41213,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40245,14 +41255,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "free_article", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40261,7 +41274,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40336,14 +41349,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "free_article_included", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40352,7 +41368,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40394,26 +41410,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "free_article_id", + "Index_type": "BTREE", "columns": [ "free_article_id" - ] + ], + "Non_unique": "" }, { "Key_name": "order_id", + "Index_type": "BTREE", "columns": [ "order_id" - ] + ], + "Non_unique": "" } ] }, { "name": "geschaeftsbrief_vorlagen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40422,7 +41445,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40433,7 +41456,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40444,7 +41467,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40455,7 +41478,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40466,7 +41489,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40477,7 +41500,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40488,7 +41511,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40497,14 +41520,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "gls", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40513,7 +41539,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40524,7 +41550,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40535,7 +41561,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40546,7 +41572,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40557,7 +41583,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40568,7 +41594,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40579,7 +41605,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40590,7 +41616,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40601,7 +41627,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40612,7 +41638,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40623,7 +41649,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40634,7 +41660,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40645,7 +41671,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40656,7 +41682,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40676,14 +41702,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "goodspostingdocument", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40692,7 +41721,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40703,7 +41732,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40725,7 +41754,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40736,7 +41765,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40758,7 +41787,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40802,7 +41831,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40813,7 +41842,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40822,14 +41851,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "goodspostingdocument_movement", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40838,7 +41870,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40871,7 +41903,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40882,7 +41914,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40893,7 +41925,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -40935,20 +41967,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "goodspostingdocument_position_id", + "Index_type": "BTREE", "columns": [ "goodspostingdocument_position_id" - ] + ], + "Non_unique": "" } ] }, { "name": "goodspostingdocument_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -40957,7 +41994,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -40990,7 +42027,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41001,7 +42038,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41098,20 +42135,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "goodspostingdocument_id", + "Index_type": "BTREE", "columns": [ "goodspostingdocument_id" - ] + ], + "Non_unique": "" } ] }, { "name": "goodspostingdocument_protocol", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41120,7 +42162,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41142,7 +42184,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41153,7 +42195,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41173,20 +42215,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "goodspostingdocument_id", + "Index_type": "BTREE", "columns": [ "goodspostingdocument_id" - ] + ], + "Non_unique": "" } ] }, { "name": "google_access_token", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41195,7 +42242,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41217,7 +42264,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41228,7 +42275,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41237,20 +42284,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "google_account_id", + "Index_type": "BTREE", "columns": [ "google_account_id" - ] + ], + "Non_unique": "" } ] }, { "name": "google_account", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41259,7 +42311,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41281,7 +42333,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41292,7 +42344,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41301,20 +42353,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "user_id", + "Index_type": "BTREE", "columns": [ "user_id" - ] + ], + "Non_unique": "" } ] }, { "name": "google_account_property", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41323,7 +42380,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41345,7 +42402,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41356,7 +42413,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41365,14 +42422,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "google_account_scope", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41381,7 +42441,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41403,7 +42463,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41412,20 +42472,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "google_account_id", + "Index_type": "BTREE", "columns": [ "google_account_id" - ] + ], + "Non_unique": "" } ] }, { "name": "googleapi", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41434,7 +42499,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41445,7 +42510,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41456,7 +42521,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41467,7 +42532,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41489,7 +42554,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41500,7 +42565,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41511,7 +42576,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41522,7 +42587,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41533,7 +42598,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41544,7 +42609,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41555,7 +42620,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41566,7 +42631,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41575,14 +42640,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "googleapi_calendar_sync", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41591,7 +42659,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41613,7 +42681,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41646,7 +42714,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41657,7 +42725,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41666,20 +42734,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "event_id", + "Index_type": "BTREE", "columns": [ "event_id" - ] + ], + "Non_unique": "" } ] }, { "name": "googleapi_user", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41688,7 +42761,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41710,7 +42783,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41743,7 +42816,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41754,7 +42827,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41765,7 +42838,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41776,7 +42849,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41785,14 +42858,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "gpsstechuhr", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41801,7 +42877,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41812,7 +42888,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41823,7 +42899,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41834,7 +42910,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41845,7 +42921,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41854,14 +42930,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "gruppen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -41870,7 +42949,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -41881,7 +42960,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41892,7 +42971,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41903,7 +42982,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41914,7 +42993,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41925,7 +43004,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41936,7 +43015,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41947,7 +43026,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41958,7 +43037,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41969,7 +43048,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41980,7 +43059,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -41991,7 +43070,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42002,7 +43081,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42013,7 +43092,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42024,7 +43103,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42057,7 +43136,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42068,7 +43147,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42079,7 +43158,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42090,7 +43169,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42101,7 +43180,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42123,7 +43202,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42134,7 +43213,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42145,7 +43224,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42156,7 +43235,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42167,7 +43246,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42178,7 +43257,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42189,7 +43268,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42200,7 +43279,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42211,7 +43290,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42222,7 +43301,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42233,7 +43312,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42244,7 +43323,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42255,7 +43334,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42266,7 +43345,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42277,7 +43356,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42288,7 +43367,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42299,7 +43378,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42310,7 +43389,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42321,7 +43400,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42332,7 +43411,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42376,7 +43455,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42398,7 +43477,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42409,7 +43488,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42420,7 +43499,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42431,7 +43510,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42442,7 +43521,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42453,7 +43532,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42464,7 +43543,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42475,7 +43554,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42486,7 +43565,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42497,7 +43576,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42508,7 +43587,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42519,7 +43598,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42530,7 +43609,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42541,7 +43620,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42552,7 +43631,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42563,7 +43642,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42574,7 +43653,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42585,7 +43664,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42607,7 +43686,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42618,7 +43697,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42629,7 +43708,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42640,7 +43719,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42651,7 +43730,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42662,7 +43741,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42673,7 +43752,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42684,7 +43763,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42695,7 +43774,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42726,14 +43805,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "gruppen_kategorien", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42742,7 +43824,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -42753,7 +43835,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42773,14 +43855,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "gruppenmapping", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42789,7 +43874,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -42855,7 +43940,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42866,7 +43951,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -42875,20 +43960,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "gruppe", + "Index_type": "BTREE", "columns": [ "gruppe" - ] + ], + "Non_unique": "" } ] }, { "name": "gruppenrechnung_auswahl", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42897,7 +43987,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -42950,32 +44040,41 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "lieferschein", + "Index_type": "BTREE", "columns": [ "lieferschein" - ] + ], + "Non_unique": "" }, { "Key_name": "auftrag", + "Index_type": "BTREE", "columns": [ "auftrag" - ] + ], + "Non_unique": "" }, { "Key_name": "user", + "Index_type": "BTREE", "columns": [ "user" - ] + ], + "Non_unique": "" } ] }, { "name": "gutschrift", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -42984,7 +44083,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -42995,7 +44094,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43006,7 +44105,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43017,7 +44116,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43028,7 +44127,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43039,7 +44138,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43050,7 +44149,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43061,7 +44160,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43072,7 +44171,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43083,7 +44182,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43094,7 +44193,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43105,7 +44204,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43116,7 +44215,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43127,7 +44226,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43138,7 +44237,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43149,7 +44248,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43160,7 +44259,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43171,7 +44270,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43182,7 +44281,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43193,7 +44292,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43204,7 +44303,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43215,7 +44314,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43226,7 +44325,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43237,7 +44336,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43248,7 +44347,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43259,7 +44358,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43270,7 +44369,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43281,7 +44380,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43292,7 +44391,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43303,7 +44402,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43314,7 +44413,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43325,7 +44424,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43336,7 +44435,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43347,7 +44446,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43358,7 +44457,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43369,7 +44468,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43402,7 +44501,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43413,7 +44512,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43424,7 +44523,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43435,7 +44534,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43446,7 +44545,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43457,7 +44556,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43468,7 +44567,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43479,7 +44578,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43490,7 +44589,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43501,7 +44600,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43512,7 +44611,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43523,7 +44622,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43534,7 +44633,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43545,7 +44644,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43556,7 +44655,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43567,7 +44666,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43578,7 +44677,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43589,7 +44688,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43600,7 +44699,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43611,7 +44710,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43622,7 +44721,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43655,7 +44754,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43666,7 +44765,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43743,7 +44842,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43754,7 +44853,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43765,7 +44864,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43776,7 +44875,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43787,7 +44886,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43809,7 +44908,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43820,7 +44919,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43831,7 +44930,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43853,7 +44952,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43864,7 +44963,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43875,7 +44974,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43886,7 +44985,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43897,7 +44996,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43908,7 +45007,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43919,7 +45018,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43985,7 +45084,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -43996,7 +45095,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44007,7 +45106,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44062,7 +45161,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44117,7 +45216,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44128,7 +45227,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44139,7 +45238,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44150,7 +45249,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44161,7 +45260,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44172,7 +45271,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44183,7 +45282,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44205,7 +45304,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44227,7 +45326,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44238,7 +45337,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44249,7 +45348,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44260,7 +45359,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44271,7 +45370,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44304,7 +45403,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44315,7 +45414,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44326,7 +45425,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44335,56 +45434,73 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "projekt", + "Index_type": "BTREE", "columns": [ "projekt" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" }, { "Key_name": "vertriebid", + "Index_type": "BTREE", "columns": [ "vertriebid" - ] + ], + "Non_unique": "" }, { "Key_name": "status", + "Index_type": "BTREE", "columns": [ "status" - ] + ], + "Non_unique": "" }, { "Key_name": "datum", + "Index_type": "BTREE", "columns": [ "datum" - ] + ], + "Non_unique": "" }, { "Key_name": "belegnr", + "Index_type": "BTREE", "columns": [ "belegnr" - ] + ], + "Non_unique": "" }, { "Key_name": "versandart", + "Index_type": "BTREE", "columns": [ "versandart" - ] + ], + "Non_unique": "" } ] }, { "name": "gutschrift_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -44393,7 +45509,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -44404,7 +45520,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44415,7 +45531,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44426,7 +45542,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44437,7 +45553,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44448,7 +45564,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44459,7 +45575,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44470,7 +45586,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44481,7 +45597,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44503,7 +45619,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44514,7 +45630,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44525,7 +45641,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44536,7 +45652,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44547,7 +45663,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44558,7 +45674,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44569,7 +45685,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44613,7 +45729,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44624,7 +45740,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44635,7 +45751,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44646,7 +45762,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44657,7 +45773,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44668,7 +45784,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44679,7 +45795,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44690,7 +45806,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44701,7 +45817,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44712,7 +45828,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44745,7 +45861,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44756,7 +45872,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44767,7 +45883,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44778,7 +45894,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44789,7 +45905,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44800,7 +45916,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44811,7 +45927,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44822,7 +45938,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44833,7 +45949,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44844,7 +45960,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44855,7 +45971,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44899,7 +46015,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44910,7 +46026,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44921,7 +46037,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44932,7 +46048,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44954,7 +46070,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -44998,7 +46114,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45020,7 +46136,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45031,7 +46147,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45042,7 +46158,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45053,7 +46169,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45064,7 +46180,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45075,7 +46191,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45086,7 +46202,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45097,7 +46213,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45108,7 +46224,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45119,7 +46235,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45130,7 +46246,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45141,7 +46257,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45152,7 +46268,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45163,7 +46279,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45174,7 +46290,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45185,7 +46301,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45196,7 +46312,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45207,7 +46323,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45218,7 +46334,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45229,7 +46345,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45240,7 +46356,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45251,7 +46367,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45262,7 +46378,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45273,7 +46389,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45284,7 +46400,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45295,7 +46411,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45306,7 +46422,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45317,7 +46433,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45328,7 +46444,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45339,7 +46455,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45350,7 +46466,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45361,7 +46477,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45383,7 +46499,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45394,7 +46510,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45405,7 +46521,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45416,7 +46532,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45427,7 +46543,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45438,7 +46554,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45471,7 +46587,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45482,7 +46598,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45493,7 +46609,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45504,7 +46620,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45513,26 +46629,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "gutschrift", + "Index_type": "BTREE", "columns": [ "gutschrift" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "gutschrift_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -45541,7 +46664,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -45552,7 +46675,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45563,7 +46686,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45574,7 +46697,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45585,7 +46708,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45594,20 +46717,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "gutschrift", + "Index_type": "BTREE", "columns": [ "gutschrift" - ] + ], + "Non_unique": "" } ] }, { "name": "hook", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -45616,7 +46744,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -45627,7 +46755,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45638,7 +46766,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45671,7 +46799,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45680,26 +46808,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "name", + "Index_type": "BTREE", "columns": [ "name" - ] + ], + "Non_unique": "" }, { "Key_name": "alias", + "Index_type": "BTREE", "columns": [ "alias" - ] + ], + "Non_unique": "" } ] }, { "name": "hook_action", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -45708,7 +46843,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -45730,7 +46865,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45750,14 +46885,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "hook_layout", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -45766,7 +46904,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -45777,7 +46915,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45788,7 +46926,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45799,7 +46937,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45810,7 +46948,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45821,7 +46959,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45832,7 +46970,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45843,7 +46981,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45863,14 +47001,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "hook_menu", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -45879,7 +47020,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -45890,7 +47031,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45910,20 +47051,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "module", + "Index_type": "BTREE", "columns": [ "module" - ] + ], + "Non_unique": "" } ] }, { "name": "hook_menu_register", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -45932,7 +47078,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -45954,7 +47100,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45965,7 +47111,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -45996,20 +47142,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "module", + "Index_type": "BTREE", "columns": [ "module" - ] + ], + "Non_unique": "" } ] }, { "name": "hook_module", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46018,7 +47169,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46029,7 +47180,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46049,14 +47200,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "hook_navigation", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46065,7 +47219,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46076,7 +47230,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46087,7 +47241,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46098,7 +47252,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46109,7 +47263,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46120,7 +47274,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46151,14 +47305,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "hook_register", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46167,7 +47324,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46189,7 +47346,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46233,7 +47390,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46253,20 +47410,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "hook", + "Index_type": "BTREE", "columns": [ "hook" - ] + ], + "Non_unique": "" } ] }, { "name": "importmasterdata", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46275,7 +47437,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46330,7 +47492,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46352,7 +47514,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46372,32 +47534,41 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "status", + "Index_type": "BTREE", "columns": [ "status" - ] + ], + "Non_unique": "" }, { "Key_name": "user_id", + "Index_type": "BTREE", "columns": [ "user_id" - ] + ], + "Non_unique": "" }, { "Key_name": "template_id", + "Index_type": "BTREE", "columns": [ "template_id" - ] + ], + "Non_unique": "" } ] }, { "name": "importvorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46406,7 +47577,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46417,7 +47588,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46428,7 +47599,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46439,7 +47610,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46450,7 +47621,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46461,7 +47632,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46472,7 +47643,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46483,7 +47654,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46494,7 +47665,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46505,7 +47676,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46516,7 +47687,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46547,14 +47718,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "importvorlage_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46563,7 +47737,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46574,7 +47748,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46596,7 +47770,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46607,7 +47781,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46618,7 +47792,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46638,14 +47812,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "inhalt", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46654,7 +47831,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46665,7 +47842,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46676,7 +47853,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46687,7 +47864,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46698,7 +47875,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46709,7 +47886,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46720,7 +47897,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46731,7 +47908,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46742,7 +47919,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46753,7 +47930,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46764,7 +47941,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46775,7 +47952,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46786,7 +47963,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46797,7 +47974,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46808,7 +47985,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46819,7 +47996,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46828,14 +48005,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "inventur", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -46844,7 +48024,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -46855,7 +48035,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46866,7 +48046,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46877,7 +48057,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46888,7 +48068,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46899,7 +48079,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46910,7 +48090,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46921,7 +48101,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46932,7 +48112,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46943,7 +48123,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46954,7 +48134,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46965,7 +48145,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46976,7 +48156,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46987,7 +48167,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -46998,7 +48178,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47009,7 +48189,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47020,7 +48200,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47031,7 +48211,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47042,7 +48222,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47053,7 +48233,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47064,7 +48244,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47075,7 +48255,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47086,7 +48266,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47097,7 +48277,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47108,7 +48288,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47119,7 +48299,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47130,7 +48310,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47141,7 +48321,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47152,7 +48332,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47163,7 +48343,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47174,7 +48354,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47185,7 +48365,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47196,7 +48376,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47207,7 +48387,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47229,7 +48409,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47240,7 +48420,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47293,14 +48473,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "inventur_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47309,7 +48492,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -47320,7 +48503,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47331,7 +48514,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47342,7 +48525,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47353,7 +48536,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47364,7 +48547,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47375,7 +48558,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47386,7 +48569,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47397,7 +48580,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47408,7 +48591,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47419,7 +48602,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47430,7 +48613,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47450,21 +48633,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "inventur", + "Index_type": "BTREE", "columns": [ "inventur", "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "inventur_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47473,7 +48661,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -47484,7 +48672,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47495,7 +48683,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47506,7 +48694,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47517,7 +48705,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47526,20 +48714,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "inventur", + "Index_type": "BTREE", "columns": [ "inventur" - ] + ], + "Non_unique": "" } ] }, { "name": "item_template", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47548,7 +48741,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -47570,7 +48763,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47581,7 +48774,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47601,14 +48794,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "jqcalendar", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47617,7 +48813,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -47628,7 +48824,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47639,7 +48835,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47650,7 +48846,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47661,7 +48857,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47672,7 +48868,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47683,7 +48879,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47703,14 +48899,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "kalender", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47719,7 +48918,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -47750,14 +48949,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "kalender_event", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -47766,7 +48968,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -47788,7 +48990,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47799,7 +49001,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47865,7 +49067,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47931,7 +49133,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47953,7 +49155,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47964,7 +49166,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47975,7 +49177,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -47984,20 +49186,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "kalender_gruppen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48006,7 +49213,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48017,7 +49224,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48028,7 +49235,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48048,14 +49255,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "kalender_gruppen_mitglieder", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48064,7 +49274,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48075,7 +49285,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48086,7 +49296,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48097,7 +49307,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48106,26 +49316,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "kalendergruppe", + "Index_type": "BTREE", "columns": [ "kalendergruppe" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "kalender_temp", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48134,7 +49351,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48145,7 +49362,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48156,7 +49373,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48167,7 +49384,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48178,7 +49395,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48189,7 +49406,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48221,6 +49438,7 @@ }, { "name": "kalender_user", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48229,7 +49447,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48240,7 +49458,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48251,7 +49469,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48271,26 +49489,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "userid", + "Index_type": "BTREE", "columns": [ "userid" - ] + ], + "Non_unique": "" }, { "Key_name": "event", + "Index_type": "BTREE", "columns": [ "event" - ] + ], + "Non_unique": "" } ] }, { "name": "kasse", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48299,7 +49524,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48310,7 +49535,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48321,7 +49546,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48332,7 +49557,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48343,7 +49568,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48354,7 +49579,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48365,7 +49590,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48376,7 +49601,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48387,7 +49612,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48398,7 +49623,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48409,7 +49634,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48420,7 +49645,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48574,7 +49799,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48585,7 +49810,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48596,7 +49821,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48607,7 +49832,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48618,7 +49843,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48627,20 +49852,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "datum", + "Index_type": "BTREE", "columns": [ "datum" - ] + ], + "Non_unique": "" } ] }, { "name": "kasse_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48649,7 +49879,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48682,7 +49912,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48713,14 +49943,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "kommissionierung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48729,7 +49962,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48751,7 +49984,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48773,7 +50006,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48806,7 +50039,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -48826,14 +50059,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "kommissionierung_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48842,7 +50078,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48895,14 +50131,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "kommissionierung_position_ls", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48911,7 +50150,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -48975,14 +50214,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "kommissionskonsignationslager_positionen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -48991,7 +50233,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -49121,20 +50363,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "konfiguration", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49143,7 +50390,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49154,7 +50401,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49165,7 +50412,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49176,7 +50423,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49185,14 +50432,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "name" - ] + ], + "Non_unique": "" } ] }, { "name": "konten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49201,7 +50451,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -49212,7 +50462,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49223,7 +50473,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49234,7 +50484,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49245,7 +50495,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49256,7 +50506,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49267,7 +50517,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49278,7 +50528,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49289,7 +50539,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49300,7 +50550,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49311,7 +50561,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49322,7 +50572,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49333,7 +50583,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49344,7 +50594,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49355,7 +50605,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49366,7 +50616,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49377,7 +50627,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49410,7 +50660,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49421,7 +50671,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49432,7 +50682,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49443,7 +50693,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49454,7 +50704,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49465,7 +50715,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49476,7 +50726,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49487,7 +50737,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49498,7 +50748,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49553,7 +50803,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49564,7 +50814,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49575,7 +50825,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49586,7 +50836,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49597,7 +50847,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49608,7 +50858,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49619,7 +50869,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49630,7 +50880,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49641,7 +50891,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49652,7 +50902,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49663,7 +50913,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49674,7 +50924,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49685,7 +50935,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49707,7 +50957,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49718,7 +50968,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49771,20 +51021,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "projekt", + "Index_type": "BTREE", "columns": [ "projekt" - ] + ], + "Non_unique": "" } ] }, { "name": "kontoauszuege", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -49793,7 +51048,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -49804,7 +51059,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49815,7 +51070,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49826,7 +51081,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49837,7 +51092,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49848,7 +51103,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49859,7 +51114,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49870,7 +51125,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49881,7 +51136,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49892,7 +51147,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49903,7 +51158,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49914,7 +51169,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49925,7 +51180,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49936,7 +51191,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49947,7 +51202,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49958,7 +51213,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49969,7 +51224,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49980,7 +51235,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -49991,7 +51246,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50002,7 +51257,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50013,7 +51268,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50024,7 +51279,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50035,7 +51290,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50046,7 +51301,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50068,7 +51323,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50079,7 +51334,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50090,7 +51345,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50123,7 +51378,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50134,7 +51389,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50145,7 +51400,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50156,7 +51411,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50178,7 +51433,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50189,7 +51444,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50200,7 +51455,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50215,37 +51470,57 @@ "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" + }, + { + "Field": "importdatum", + "Type": "datetime", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" } ], "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "konto", + "Index_type": "BTREE", "columns": [ "konto" - ] + ], + "Non_unique": "" }, { "Key_name": "parent", + "Index_type": "BTREE", "columns": [ "parent" - ] + ], + "Non_unique": "" }, { "Key_name": "gegenkonto", + "Index_type": "BTREE", "columns": [ "gegenkonto" - ] + ], + "Non_unique": "" } ] }, { "name": "kontoauszuege_zahlungsausgang", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50254,7 +51529,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50265,7 +51540,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50276,7 +51551,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50287,7 +51562,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50298,7 +51573,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50309,7 +51584,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50320,7 +51595,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50331,7 +51606,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50342,7 +51617,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50353,7 +51628,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50362,26 +51637,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "kontoauszuege", + "Index_type": "BTREE", "columns": [ "kontoauszuege" - ] + ], + "Non_unique": "" }, { "Key_name": "parameter", + "Index_type": "BTREE", "columns": [ "parameter" - ] + ], + "Non_unique": "" } ] }, { "name": "kontoauszuege_zahlungseingang", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50390,7 +51672,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50401,7 +51683,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50412,7 +51694,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50423,7 +51705,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50434,7 +51716,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50445,7 +51727,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50456,7 +51738,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50467,7 +51749,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50478,7 +51760,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50489,7 +51771,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50500,7 +51782,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50509,26 +51791,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "kontoauszuege", + "Index_type": "BTREE", "columns": [ "kontoauszuege" - ] + ], + "Non_unique": "" }, { "Key_name": "parameter", + "Index_type": "BTREE", "columns": [ "parameter" - ] + ], + "Non_unique": "" } ] }, { "name": "kontorahmen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50537,7 +51826,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50548,7 +51837,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50559,7 +51848,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50570,7 +51859,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50612,14 +51901,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "kontorahmen_checked", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50628,7 +51920,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50639,7 +51931,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50650,7 +51942,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50659,14 +51951,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "kopiebelegempfaenger", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50675,7 +51970,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50686,7 +51981,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50697,7 +51992,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50708,7 +52003,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50730,7 +52025,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50741,7 +52036,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50752,7 +52047,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50763,7 +52058,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50794,14 +52089,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "kostenstelle", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50810,7 +52108,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50821,7 +52119,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50832,7 +52130,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50843,7 +52141,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50854,7 +52152,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50863,14 +52161,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "kostenstelle_buchung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50879,7 +52180,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50890,7 +52191,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50901,7 +52202,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50912,7 +52213,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50923,7 +52224,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50934,7 +52235,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50943,14 +52244,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "kostenstellen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -50959,7 +52263,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -50970,7 +52274,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50981,7 +52285,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -50992,7 +52296,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51001,14 +52305,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "kundevorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51017,7 +52324,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51028,7 +52335,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51039,7 +52346,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51050,7 +52357,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51061,7 +52368,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51072,7 +52379,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51083,7 +52390,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51103,14 +52410,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "label_automatic", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51119,7 +52429,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51152,7 +52462,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51163,7 +52473,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51172,14 +52482,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "label_group", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51188,7 +52501,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51199,7 +52512,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51210,7 +52523,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51230,20 +52543,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "group_table", + "Index_type": "BTREE", "columns": [ "group_table" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "label_reference", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51252,7 +52570,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51263,7 +52581,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51274,7 +52592,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51285,7 +52603,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51305,62 +52623,77 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "label_type_id", + "Index_type": "BTREE", "columns": [ "label_type_id", "reference_table", "reference_id" - ] + ], + "Non_unique": "UNIQUE" }, { "Key_name": "label_type_id_2", + "Index_type": "BTREE", "columns": [ "label_type_id", "reference_table", "reference_id" - ] + ], + "Non_unique": "UNIQUE" }, { "Key_name": "label_type_id_3", + "Index_type": "BTREE", "columns": [ "label_type_id", "reference_table", "reference_id" - ] + ], + "Non_unique": "UNIQUE" }, { "Key_name": "label_type_id_4", + "Index_type": "BTREE", "columns": [ "label_type_id", "reference_table", "reference_id" - ] + ], + "Non_unique": "UNIQUE" }, { "Key_name": "label_type_id_5", + "Index_type": "BTREE", "columns": [ "label_type_id", "reference_table", "reference_id" - ] + ], + "Non_unique": "UNIQUE" }, { "Key_name": "label_type_id_6", + "Index_type": "BTREE", "columns": [ "label_type_id", "reference_table", "reference_id" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "label_type", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51369,7 +52702,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51391,7 +52724,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51402,7 +52735,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51444,20 +52777,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "type", + "Index_type": "BTREE", "columns": [ "type" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "laender", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51466,7 +52804,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51477,7 +52815,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51488,7 +52826,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51499,7 +52837,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51510,7 +52848,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51521,7 +52859,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51541,14 +52879,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "lager", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51557,7 +52898,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51568,7 +52909,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51579,7 +52920,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51590,7 +52931,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51601,7 +52942,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51612,7 +52953,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51654,14 +52995,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "lager_bewegung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51670,7 +53014,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51681,7 +53025,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51692,7 +53036,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51714,7 +53058,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51725,7 +53069,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51736,7 +53080,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51747,7 +53091,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51758,7 +53102,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51769,7 +53113,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51780,7 +53124,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51802,7 +53146,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51835,7 +53179,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51846,7 +53190,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51888,26 +53232,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "lager_charge", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -51916,7 +53267,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -51927,7 +53278,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51938,7 +53289,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51949,7 +53300,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51971,7 +53322,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51982,7 +53333,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -51993,7 +53344,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52002,26 +53353,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "lager_platz", + "Index_type": "BTREE", "columns": [ "lager_platz" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "lager_differenzen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52030,7 +53388,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52041,7 +53399,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52052,7 +53410,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52063,7 +53421,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52074,7 +53432,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52085,7 +53443,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52096,7 +53454,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52107,7 +53465,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52118,7 +53476,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52127,14 +53485,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "lager_mindesthaltbarkeitsdatum", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52143,7 +53504,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52154,7 +53515,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52165,7 +53526,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52176,7 +53537,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52198,7 +53559,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52209,7 +53570,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52220,7 +53581,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52231,7 +53592,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52240,26 +53601,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "lager_platz", + "Index_type": "BTREE", "columns": [ "lager_platz" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "lager_platz", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52268,7 +53636,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52279,7 +53647,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52290,7 +53658,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52301,7 +53669,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52312,7 +53680,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52323,7 +53691,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52334,7 +53702,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52444,7 +53812,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52455,7 +53823,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52486,20 +53854,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "lager", + "Index_type": "BTREE", "columns": [ "lager" - ] + ], + "Non_unique": "" } ] }, { "name": "lager_platz_inhalt", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52508,7 +53881,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52519,7 +53892,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52530,7 +53903,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52552,7 +53925,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52563,7 +53936,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52574,7 +53947,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52585,7 +53958,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52596,7 +53969,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52618,7 +53991,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52638,26 +54011,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" }, { "Key_name": "lager_platz", + "Index_type": "BTREE", "columns": [ "lager_platz" - ] + ], + "Non_unique": "" } ] }, { "name": "lager_platz_vpe", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52666,7 +54046,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52677,7 +54057,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52818,14 +54198,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "lager_reserviert", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -52834,7 +54217,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -52845,7 +54228,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52856,7 +54239,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52878,7 +54261,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52889,7 +54272,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52900,7 +54283,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52911,7 +54294,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52922,7 +54305,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52933,7 +54316,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52944,7 +54327,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -52997,27 +54380,34 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse", "artikel" - ] + ], + "Non_unique": "" }, { "Key_name": "objekt", + "Index_type": "BTREE", "columns": [ "objekt" - ] + ], + "Non_unique": "" } ] }, { "name": "lager_seriennummern", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53026,7 +54416,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53037,7 +54427,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53048,7 +54438,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53059,7 +54449,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53070,7 +54460,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53081,7 +54471,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53092,7 +54482,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53103,7 +54493,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53112,14 +54502,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "lagermindestmengen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53128,7 +54521,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53172,7 +54565,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53183,7 +54576,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53203,21 +54596,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel", "lager_platz" - ] + ], + "Non_unique": "" } ] }, { "name": "lagerstueckliste", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53226,7 +54624,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53279,20 +54677,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "lagerwert", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53301,7 +54704,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53312,7 +54715,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53389,7 +54792,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53422,7 +54825,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53433,7 +54836,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53444,7 +54847,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53475,26 +54878,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" }, { "Key_name": "datum", + "Index_type": "BTREE", "columns": [ "datum" - ] + ], + "Non_unique": "" } ] }, { "name": "layouttemplate_attachment", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53503,7 +54913,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53514,7 +54924,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53558,7 +54968,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53569,7 +54979,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53613,7 +55023,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53622,14 +55032,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "layouttemplate_attachment_items", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53638,7 +55051,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53649,7 +55062,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53691,14 +55104,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "layoutvorlagen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53707,7 +55123,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53718,7 +55134,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53729,7 +55145,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53740,7 +55156,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53751,7 +55167,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53762,7 +55178,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53782,14 +55198,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "layoutvorlagen_positionen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -53798,7 +55217,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -53820,7 +55239,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53831,7 +55250,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53842,7 +55261,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53853,7 +55272,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53919,7 +55338,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53952,7 +55371,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53963,7 +55382,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53974,7 +55393,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53985,7 +55404,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -53996,7 +55415,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54018,7 +55437,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54029,7 +55448,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54040,7 +55459,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54051,7 +55470,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54095,7 +55514,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54106,7 +55525,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54148,20 +55567,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "layoutvorlage", + "Index_type": "BTREE", "columns": [ "layoutvorlage" - ] + ], + "Non_unique": "" } ] }, { "name": "lieferadressen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54170,7 +55594,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -54181,7 +55605,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54192,7 +55616,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54203,7 +55627,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54214,7 +55638,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54225,7 +55649,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54236,7 +55660,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54247,7 +55671,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54258,7 +55682,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54269,7 +55693,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54280,7 +55704,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54291,7 +55715,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54302,7 +55726,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54313,7 +55737,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54324,7 +55748,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54335,7 +55759,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54346,7 +55770,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54368,7 +55792,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54390,7 +55814,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54401,7 +55825,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54412,7 +55836,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54423,7 +55847,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54434,7 +55858,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54445,7 +55869,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54454,20 +55878,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "lieferantvorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54476,7 +55905,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -54487,7 +55916,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54498,7 +55927,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54509,7 +55938,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54520,7 +55949,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54531,7 +55960,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54542,7 +55971,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54553,7 +55982,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54573,14 +56002,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "lieferbedingungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54589,7 +56021,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -54600,7 +56032,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54611,7 +56043,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54620,14 +56052,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "lieferschein", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -54636,7 +56071,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -54647,7 +56082,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54658,7 +56093,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54669,7 +56104,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54680,7 +56115,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54691,7 +56126,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54702,7 +56137,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54713,7 +56148,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54724,7 +56159,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54735,7 +56170,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54746,7 +56181,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54757,7 +56192,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54768,7 +56203,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54779,7 +56214,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54790,7 +56225,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54801,7 +56236,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54812,7 +56247,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54823,7 +56258,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54834,7 +56269,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54845,7 +56280,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54856,7 +56291,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54867,7 +56302,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54878,7 +56313,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54889,7 +56324,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54900,7 +56335,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54911,7 +56346,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54922,7 +56357,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54933,7 +56368,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54944,7 +56379,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54955,7 +56390,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54966,7 +56401,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54977,7 +56412,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54988,7 +56423,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -54999,7 +56434,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55021,7 +56456,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55032,7 +56467,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55043,7 +56478,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55054,7 +56489,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55065,7 +56500,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55076,7 +56511,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55109,7 +56544,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55175,7 +56610,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55186,7 +56621,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55252,7 +56687,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55263,7 +56698,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55285,7 +56720,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55296,7 +56731,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55307,7 +56742,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55329,7 +56764,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55351,7 +56786,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55373,7 +56808,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55384,7 +56819,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55395,7 +56830,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55406,7 +56841,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55439,7 +56874,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55481,68 +56916,89 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "projekt", + "Index_type": "BTREE", "columns": [ "projekt" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" }, { "Key_name": "auftragid", + "Index_type": "BTREE", "columns": [ "auftragid" - ] + ], + "Non_unique": "" }, { "Key_name": "land", + "Index_type": "BTREE", "columns": [ "land" - ] + ], + "Non_unique": "" }, { "Key_name": "status", + "Index_type": "BTREE", "columns": [ "status" - ] + ], + "Non_unique": "" }, { "Key_name": "datum", + "Index_type": "BTREE", "columns": [ "datum" - ] + ], + "Non_unique": "" }, { "Key_name": "belegnr", + "Index_type": "BTREE", "columns": [ "belegnr" - ] + ], + "Non_unique": "" }, { "Key_name": "keinerechnung", + "Index_type": "BTREE", "columns": [ "keinerechnung" - ] + ], + "Non_unique": "" }, { "Key_name": "versandart", + "Index_type": "BTREE", "columns": [ "versandart" - ] + ], + "Non_unique": "" } ] }, { "name": "lieferschein_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -55551,7 +57007,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -55562,7 +57018,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55573,7 +57029,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55584,7 +57040,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55595,7 +57051,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55606,7 +57062,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55617,7 +57073,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55628,7 +57084,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55639,7 +57095,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55650,7 +57106,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55661,7 +57117,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55672,7 +57128,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55683,7 +57139,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55694,7 +57150,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55705,7 +57161,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55716,7 +57172,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55727,7 +57183,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55760,7 +57216,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55793,7 +57249,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55804,7 +57260,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55815,7 +57271,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55826,7 +57282,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55837,7 +57293,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55848,7 +57304,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55859,7 +57315,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55870,7 +57326,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55881,7 +57337,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55892,7 +57348,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55903,7 +57359,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55947,7 +57403,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55980,7 +57436,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -55991,7 +57447,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56002,7 +57458,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56013,7 +57469,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56024,7 +57480,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56035,7 +57491,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56046,7 +57502,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56057,7 +57513,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56068,7 +57524,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56079,7 +57535,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56090,7 +57546,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56101,7 +57557,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56112,7 +57568,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56123,7 +57579,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56134,7 +57590,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56145,7 +57601,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56156,7 +57612,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56167,7 +57623,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56178,7 +57634,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56189,7 +57645,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56200,7 +57656,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56211,7 +57667,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56222,7 +57678,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56233,7 +57689,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56244,7 +57700,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56255,7 +57711,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56266,7 +57722,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56277,7 +57733,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56288,7 +57744,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56299,7 +57755,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56332,7 +57788,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56365,7 +57821,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56376,7 +57832,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56418,32 +57874,41 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "lieferschein", + "Index_type": "BTREE", "columns": [ "lieferschein" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" }, { "Key_name": "auftrag_position_id", + "Index_type": "BTREE", "columns": [ "auftrag_position_id" - ] + ], + "Non_unique": "" } ] }, { "name": "lieferschein_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -56452,7 +57917,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -56463,7 +57928,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56474,7 +57939,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56485,7 +57950,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56496,7 +57961,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56505,20 +57970,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "lieferschein", + "Index_type": "BTREE", "columns": [ "lieferschein" - ] + ], + "Non_unique": "" } ] }, { "name": "lieferschwelle", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -56527,7 +57997,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -56538,7 +58008,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56549,7 +58019,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56571,7 +58041,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56582,7 +58052,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56593,7 +58063,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56604,7 +58074,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56615,7 +58085,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56626,7 +58096,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56637,7 +58107,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56648,7 +58118,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56659,7 +58129,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56703,7 +58173,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56723,20 +58193,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "empfaengerland", + "Index_type": "BTREE", "columns": [ "empfaengerland" - ] + ], + "Non_unique": "" } ] }, { "name": "lieferschwelle_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -56745,7 +58220,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -56767,7 +58242,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56778,7 +58253,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56789,7 +58264,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56809,26 +58284,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "empfaengerland", + "Index_type": "BTREE", "columns": [ "empfaengerland" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "liefertermine_positionen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -56837,7 +58319,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -56881,7 +58363,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56890,14 +58372,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "linkeditor", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -56906,7 +58391,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -56917,7 +58402,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56928,7 +58413,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56948,14 +58433,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -56964,7 +58452,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -56975,7 +58463,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56986,7 +58474,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -56997,7 +58485,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57008,7 +58496,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57019,7 +58507,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57030,7 +58518,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57041,7 +58529,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57052,7 +58540,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57063,7 +58551,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57072,14 +58560,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "logdatei", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57088,7 +58579,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57099,7 +58590,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57110,7 +58601,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57121,7 +58612,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57132,7 +58623,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57143,7 +58634,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57152,14 +58643,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "logfile", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57168,7 +58662,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57179,7 +58673,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57190,7 +58684,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57201,7 +58695,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57212,7 +58706,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57223,7 +58717,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57234,7 +58728,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57245,7 +58739,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57254,14 +58748,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "magento2_extended_mapping", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57270,7 +58767,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57281,7 +58778,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57292,7 +58789,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57303,7 +58800,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57314,7 +58811,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57356,20 +58853,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shopexport_id", + "Index_type": "BTREE", "columns": [ "shopexport_id" - ] + ], + "Non_unique": "" } ] }, { "name": "mailausgang", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57378,7 +58880,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57389,7 +58891,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57400,7 +58902,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57411,7 +58913,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57422,7 +58924,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57455,7 +58957,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57464,14 +58966,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "managementboard_liquiditaet", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57480,7 +58985,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57491,7 +58996,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57502,7 +59007,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57513,7 +59018,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57555,14 +59060,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "managementboard_liquiditaet_datum", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57571,7 +59079,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57582,7 +59090,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57604,7 +59112,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57613,14 +59121,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "mandatory_field", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57629,7 +59140,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57640,7 +59151,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57651,7 +59162,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57662,7 +59173,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57673,7 +59184,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57684,7 +59195,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57728,7 +59239,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57739,7 +59250,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57748,26 +59259,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "module", + "Index_type": "BTREE", "columns": [ "module" - ] + ], + "Non_unique": "" }, { "Key_name": "action", + "Index_type": "BTREE", "columns": [ "action" - ] + ], + "Non_unique": "" } ] }, { "name": "massenbearbeitung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57776,7 +59294,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57787,7 +59305,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57798,7 +59316,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57809,7 +59327,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57820,7 +59338,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57831,7 +59349,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57840,14 +59358,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "matrix_article_options_translation", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57856,7 +59377,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -57867,7 +59388,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57878,7 +59399,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57889,7 +59410,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57900,7 +59421,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57911,7 +59432,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57922,7 +59443,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57933,7 +59454,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57944,7 +59465,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57955,7 +59476,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57966,7 +59487,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -57975,14 +59496,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "matrix_article_translation", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -57991,7 +59515,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -58002,7 +59526,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58013,7 +59537,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58024,7 +59548,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58035,7 +59559,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58046,7 +59570,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58057,7 +59581,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58068,7 +59592,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58088,14 +59612,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "matrix_list_view", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58104,7 +59631,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -58137,7 +59664,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58148,7 +59675,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58159,7 +59686,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58181,7 +59708,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58203,7 +59730,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58225,7 +59752,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58247,7 +59774,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58269,7 +59796,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58291,7 +59818,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58313,7 +59840,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58335,7 +59862,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58357,7 +59884,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58379,7 +59906,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58401,7 +59928,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58423,7 +59950,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58445,7 +59972,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58467,7 +59994,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58489,7 +60016,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58511,7 +60038,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58533,7 +60060,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58555,7 +60082,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58577,7 +60104,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58597,21 +60124,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "matrix_article_id", + "Index_type": "BTREE", "columns": [ "matrix_article_id", "hash" - ] + ], + "Non_unique": "" } ] }, { "name": "matrix_list_view_status", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58620,7 +60152,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -58662,20 +60194,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "matrix_article_id", + "Index_type": "BTREE", "columns": [ "matrix_article_id" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "matrixprodukt_eigenschaftengruppen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58684,7 +60221,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -58706,7 +60243,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58717,7 +60254,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58739,7 +60276,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58770,14 +60307,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "matrixprodukt_eigenschaftengruppen_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58786,7 +60326,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -58819,7 +60359,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58830,7 +60370,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58852,7 +60392,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58916,20 +60456,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "matrixprodukt_eigenschaftenoptionen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -58938,7 +60483,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -58971,7 +60516,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -58982,7 +60527,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59015,7 +60560,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59026,7 +60571,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59037,7 +60582,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59046,14 +60591,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "matrixprodukt_eigenschaftenoptionen_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59062,7 +60610,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59106,7 +60654,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59117,7 +60665,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59161,7 +60709,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59172,7 +60720,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59183,7 +60731,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59192,20 +60740,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "gruppe", + "Index_type": "BTREE", "columns": [ "gruppe" - ] + ], + "Non_unique": "" } ] }, { "name": "matrixprodukt_optionen_zu_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59214,7 +60767,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59245,26 +60798,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "option_id", + "Index_type": "BTREE", "columns": [ "option_id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "maximum_discount", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59273,7 +60833,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59304,14 +60864,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "mhd_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59320,7 +60883,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59364,7 +60927,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59375,7 +60938,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59386,7 +60949,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59430,7 +60993,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59463,7 +61026,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59494,26 +61057,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "doctypeid", + "Index_type": "BTREE", "columns": [ "doctypeid" - ] + ], + "Non_unique": "" }, { "Key_name": "doctype", + "Index_type": "BTREE", "columns": [ "doctype" - ] + ], + "Non_unique": "" } ] }, { "name": "mitarbeiterzeiterfassung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59522,7 +61092,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59544,7 +61114,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59555,7 +61125,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59566,7 +61136,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59588,7 +61158,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59599,7 +61169,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59643,7 +61213,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -59663,14 +61233,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "mitarbeiterzeiterfassung_einstellungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -59679,7 +61252,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -59701,7 +61274,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60029,14 +61602,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "mitarbeiterzeiterfassung_sollstunden", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60045,7 +61621,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -60067,7 +61643,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60144,7 +61720,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60155,7 +61731,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60166,7 +61742,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60177,7 +61753,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60188,7 +61764,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60199,7 +61775,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60210,7 +61786,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60221,7 +61797,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60232,7 +61808,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60243,7 +61819,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60254,7 +61830,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60265,7 +61841,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60276,7 +61852,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60287,7 +61863,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60298,7 +61874,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60309,7 +61885,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60342,7 +61918,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60353,7 +61929,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60364,7 +61940,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60373,26 +61949,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" }, { "Key_name": "datum", + "Index_type": "BTREE", "columns": [ "datum" - ] + ], + "Non_unique": "" } ] }, { "name": "mlm_abrechnung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60401,7 +61984,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -60412,7 +61995,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60423,7 +62006,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60434,7 +62017,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60476,14 +62059,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "mlm_abrechnung_adresse", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60492,7 +62078,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -60525,7 +62111,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60536,7 +62122,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60547,7 +62133,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60558,7 +62144,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60569,7 +62155,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60580,7 +62166,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60591,7 +62177,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60613,7 +62199,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60646,7 +62232,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60657,7 +62243,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60668,7 +62254,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60679,7 +62265,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60690,7 +62276,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60701,7 +62287,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60745,7 +62331,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60756,7 +62342,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60767,7 +62353,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60776,14 +62362,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "mlm_abrechnung_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60792,7 +62381,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -60825,7 +62414,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60834,14 +62423,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "mlm_downline", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60850,7 +62442,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -60881,14 +62473,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "mlm_positionierung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60897,7 +62492,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -60919,7 +62514,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60930,7 +62525,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60941,7 +62536,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -60983,14 +62578,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "mlm_wartekonto", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -60999,7 +62597,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61032,7 +62630,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61043,7 +62641,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61054,7 +62652,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61107,14 +62705,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "module_action", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61123,7 +62724,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61134,7 +62735,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61145,7 +62746,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61154,21 +62755,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "module", + "Index_type": "BTREE", "columns": [ "module", "action" - ] + ], + "Non_unique": "" } ] }, { "name": "module_lock", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61177,7 +62783,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61188,7 +62794,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61199,7 +62805,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61221,7 +62827,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61241,14 +62847,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "module_stat", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61257,7 +62866,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61268,7 +62877,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61279,7 +62888,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61290,7 +62899,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61310,22 +62919,27 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "created_date", + "Index_type": "BTREE", "columns": [ "created_date", "module", "action" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "module_stat_detail", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61334,7 +62948,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61345,7 +62959,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61356,7 +62970,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61400,7 +63014,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61411,7 +63025,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61422,7 +63036,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61431,12 +63045,15 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "user_id", + "Index_type": "BTREE", "columns": [ "user_id", "uid", @@ -61445,12 +63062,14 @@ "document_id", "visible", "start_date" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "module_status", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61459,7 +63078,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61470,7 +63089,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61490,14 +63109,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "navigation_alternative", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61506,7 +63128,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61517,7 +63139,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61528,7 +63150,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61539,7 +63161,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61550,7 +63172,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61581,14 +63203,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "newsletter_blacklist", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61597,7 +63222,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61608,7 +63233,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61617,14 +63242,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "newslettercache", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61633,7 +63261,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61644,7 +63272,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61654,6 +63282,7 @@ }, { "name": "notification_message", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61662,7 +63291,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61695,7 +63324,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61706,7 +63335,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61717,7 +63346,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61728,7 +63357,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61759,20 +63388,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "user_id", + "Index_type": "BTREE", "columns": [ "user_id" - ] + ], + "Non_unique": "" } ] }, { "name": "object_stat", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61781,7 +63415,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61792,7 +63426,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61803,7 +63437,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61814,7 +63448,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61825,7 +63459,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61845,23 +63479,28 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "created_at", + "Index_type": "BTREE", "columns": [ "created_at", "object_type", "object_parameter", "event_type" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "objekt_lager_platz", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -61870,7 +63509,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -61892,7 +63531,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61936,7 +63575,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61947,7 +63586,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -61967,32 +63606,41 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "lager_platz", + "Index_type": "BTREE", "columns": [ "lager_platz" - ] + ], + "Non_unique": "" }, { "Key_name": "parameter", + "Index_type": "BTREE", "columns": [ "parameter" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "objekt_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62001,7 +63649,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62012,7 +63660,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62034,7 +63682,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62056,7 +63704,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62067,7 +63715,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62076,14 +63724,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "offenevorgaenge", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62092,7 +63743,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62103,7 +63754,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62114,7 +63765,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62125,7 +63776,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62136,7 +63787,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62147,7 +63798,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62167,20 +63818,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "onlineshop_transfer_cart", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62189,7 +63845,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62211,7 +63867,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62222,7 +63878,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62233,7 +63889,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62244,7 +63900,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62255,7 +63911,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62266,7 +63922,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62286,26 +63942,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id" - ] + ], + "Non_unique": "" }, { "Key_name": "extid", + "Index_type": "BTREE", "columns": [ "extid" - ] + ], + "Non_unique": "" } ] }, { "name": "onlineshops_tasks", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62314,7 +63977,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62336,7 +63999,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62389,14 +64052,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "openstreetmap_status", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62405,7 +64071,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62436,14 +64102,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "paketannahme", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62452,7 +64121,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62463,7 +64132,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62474,7 +64143,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62485,7 +64154,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62496,7 +64165,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62507,7 +64176,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62518,7 +64187,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62529,7 +64198,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62540,7 +64209,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62551,7 +64220,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62562,7 +64231,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62573,7 +64242,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62584,7 +64253,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62595,7 +64264,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62606,7 +64275,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62617,7 +64286,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62628,7 +64297,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62639,7 +64308,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62650,7 +64319,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62661,7 +64330,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62683,7 +64352,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62694,7 +64363,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62703,14 +64372,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "paketdistribution", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62719,7 +64391,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62730,7 +64402,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62741,7 +64413,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62752,7 +64424,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62763,7 +64435,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62774,7 +64446,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62785,7 +64457,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62796,7 +64468,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62807,7 +64479,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62818,7 +64490,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62829,7 +64501,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62860,14 +64532,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "partner", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -62876,7 +64551,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -62887,7 +64562,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62898,7 +64573,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62909,7 +64584,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62920,7 +64595,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62931,7 +64606,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62942,7 +64617,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62953,7 +64628,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62964,7 +64639,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -62984,14 +64659,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "partner_verkauf", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63000,7 +64678,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63011,7 +64689,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63022,7 +64700,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63033,7 +64711,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63044,7 +64722,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63055,7 +64733,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63066,7 +64744,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63075,14 +64753,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "parts_list_alternative", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63091,7 +64772,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63124,7 +64805,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63133,14 +64814,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "payment_transaction", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63149,7 +64833,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63171,7 +64855,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63215,7 +64899,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63226,7 +64910,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63237,7 +64921,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63270,7 +64954,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63290,38 +64974,49 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "returnorder_id", + "Index_type": "BTREE", "columns": [ "returnorder_id" - ] + ], + "Non_unique": "" }, { "Key_name": "liabilitiy_id", + "Index_type": "BTREE", "columns": [ "liability_id" - ] + ], + "Non_unique": "" }, { "Key_name": "payment_transaction_group_id", + "Index_type": "BTREE", "columns": [ "payment_transaction_group_id" - ] + ], + "Non_unique": "" }, { "Key_name": "payment_account_id", + "Index_type": "BTREE", "columns": [ "payment_account_id" - ] + ], + "Non_unique": "" } ] }, { "name": "payment_transaction_group", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63330,7 +65025,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63363,7 +65058,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63374,7 +65069,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63383,20 +65078,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "payment_account_id", + "Index_type": "BTREE", "columns": [ "payment_account_id" - ] + ], + "Non_unique": "" } ] }, { "name": "payment_transaction_preview", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63405,7 +65105,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63493,7 +65193,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63504,7 +65204,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63515,7 +65215,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63524,26 +65224,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "user_id", + "Index_type": "BTREE", "columns": [ "user_id" - ] + ], + "Non_unique": "" }, { "Key_name": "returnorder_id", + "Index_type": "BTREE", "columns": [ "returnorder_id" - ] + ], + "Non_unique": "" } ] }, { "name": "paymentaccount_import_job", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63552,7 +65259,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63574,7 +65281,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63585,7 +65292,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63616,21 +65323,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "paymentaccount_id", + "Index_type": "BTREE", "columns": [ "paymentaccount_id", "status" - ] + ], + "Non_unique": "" } ] }, { "name": "paymentaccount_import_scheduler", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63639,7 +65351,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63670,21 +65382,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "paymentaccount_id", + "Index_type": "BTREE", "columns": [ "paymentaccount_id", "hour" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "paymentimport_lock", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63693,7 +65410,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63715,7 +65432,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63748,7 +65465,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63757,20 +65474,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "paymentaccount_id", + "Index_type": "BTREE", "columns": [ "paymentaccount_id" - ] + ], + "Non_unique": "" } ] }, { "name": "pdfarchiv", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63779,7 +65501,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63790,7 +65512,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63801,7 +65523,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63823,7 +65545,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63834,7 +65556,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63845,7 +65567,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63856,7 +65578,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63867,7 +65589,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63878,7 +65600,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63922,7 +65644,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63931,26 +65653,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "table_id", + "Index_type": "BTREE", "columns": [ "table_id" - ] + ], + "Non_unique": "" }, { "Key_name": "schreibschutz", + "Index_type": "BTREE", "columns": [ "schreibschutz" - ] + ], + "Non_unique": "" } ] }, { "name": "pdfmirror_md5pool", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -63959,7 +65688,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -63970,7 +65699,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -63981,7 +65710,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64003,7 +65732,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64014,7 +65743,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64045,14 +65774,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "permissionhistory", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64061,7 +65793,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64072,7 +65804,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64083,7 +65815,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64094,7 +65826,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64105,7 +65837,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64116,7 +65848,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64127,7 +65859,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64138,7 +65870,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64158,14 +65890,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "pinwand", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64174,7 +65909,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64185,7 +65920,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64205,14 +65940,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "pinwand_user", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64221,7 +65959,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64252,21 +65990,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "pinwand", + "Index_type": "BTREE", "columns": [ "pinwand", "user" - ] + ], + "Non_unique": "" } ] }, { "name": "pos_abschluss", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64275,7 +66018,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64286,7 +66029,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64308,7 +66051,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64319,7 +66062,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64328,14 +66071,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "pos_kassierer", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64344,7 +66090,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64377,7 +66123,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64397,14 +66143,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "pos_order", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64413,7 +66162,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64490,7 +66239,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64501,7 +66250,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64523,7 +66272,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64545,7 +66294,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64556,7 +66305,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64589,7 +66338,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64598,20 +66347,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "projekt", + "Index_type": "BTREE", "columns": [ "projekt" - ] + ], + "Non_unique": "" } ] }, { "name": "pos_rksv", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64620,7 +66374,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64631,7 +66385,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64642,7 +66396,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64730,7 +66484,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64741,7 +66495,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64752,7 +66506,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64763,7 +66517,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64774,7 +66528,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64783,14 +66537,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "pos_sessions", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64799,7 +66556,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64832,7 +66589,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64843,7 +66600,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64854,7 +66611,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64874,14 +66631,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "pos_tagesabschluss", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64890,7 +66650,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -64934,7 +66694,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64945,7 +66705,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -64954,26 +66714,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "datum", + "Index_type": "BTREE", "columns": [ "datum" - ] + ], + "Non_unique": "" }, { "Key_name": "projekt", + "Index_type": "BTREE", "columns": [ "projekt" - ] + ], + "Non_unique": "" } ] }, { "name": "pos_zaehlungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -64982,7 +66749,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -65202,7 +66969,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65213,7 +66980,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65233,14 +67000,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "preisanfrage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65249,7 +67019,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -65260,7 +67030,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65271,7 +67041,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65282,7 +67052,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65293,7 +67063,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65304,7 +67074,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65315,7 +67085,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65326,7 +67096,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65337,7 +67107,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65348,7 +67118,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65359,7 +67129,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65370,7 +67140,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65381,7 +67151,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65392,7 +67162,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65403,7 +67173,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65414,7 +67184,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65425,7 +67195,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65436,7 +67206,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65447,7 +67217,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65458,7 +67228,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65469,7 +67239,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65480,7 +67250,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65491,7 +67261,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65502,7 +67272,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65513,7 +67283,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65524,7 +67294,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65535,7 +67305,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65546,7 +67316,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65557,7 +67327,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65568,7 +67338,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65579,7 +67349,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65590,7 +67360,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65601,7 +67371,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65612,7 +67382,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65634,7 +67404,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65645,7 +67415,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65678,7 +67448,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65689,7 +67459,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65711,7 +67481,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65722,7 +67492,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65733,7 +67503,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65810,7 +67580,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65832,7 +67602,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65854,7 +67624,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65865,7 +67635,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65876,7 +67646,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65887,7 +67657,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65898,7 +67668,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65909,7 +67679,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65929,14 +67699,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "preisanfrage_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -65945,7 +67718,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -65956,7 +67729,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65967,7 +67740,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65978,7 +67751,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -65989,7 +67762,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66000,7 +67773,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66011,7 +67784,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66022,7 +67795,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66033,7 +67806,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66044,7 +67817,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66055,7 +67828,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66066,7 +67839,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66077,7 +67850,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66088,7 +67861,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66099,7 +67872,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66110,7 +67883,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66143,7 +67916,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66154,7 +67927,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66165,7 +67938,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66176,7 +67949,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66187,7 +67960,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66198,7 +67971,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66209,7 +67982,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66220,7 +67993,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66231,7 +68004,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66242,7 +68015,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66253,7 +68026,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66264,7 +68037,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66275,7 +68048,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66286,7 +68059,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66297,7 +68070,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66308,7 +68081,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66319,7 +68092,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66330,7 +68103,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66341,7 +68114,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66352,7 +68125,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66363,7 +68136,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66374,7 +68147,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66385,7 +68158,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66396,7 +68169,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66407,7 +68180,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66418,7 +68191,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66429,7 +68202,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66440,7 +68213,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66451,7 +68224,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66462,7 +68235,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66473,7 +68246,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66484,7 +68257,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66495,7 +68268,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66506,7 +68279,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66517,7 +68290,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66528,7 +68301,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66539,7 +68312,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66550,7 +68323,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66561,7 +68334,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66572,7 +68345,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66581,20 +68354,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "preisanfrage", + "Index_type": "BTREE", "columns": [ "preisanfrage" - ] + ], + "Non_unique": "" } ] }, { "name": "preisanfrage_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66603,7 +68381,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -66614,7 +68392,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66625,7 +68403,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66636,7 +68414,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66647,7 +68425,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66656,14 +68434,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "presta_image_association", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66672,7 +68453,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -66683,7 +68464,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66694,7 +68475,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66705,7 +68486,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66714,14 +68495,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "presta_matrix_association", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66730,7 +68514,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -66741,7 +68525,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66752,7 +68536,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66763,7 +68547,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66772,14 +68556,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "produktion", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -66788,7 +68575,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -66799,7 +68586,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66810,7 +68597,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66821,7 +68608,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66832,7 +68619,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66843,7 +68630,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66854,7 +68641,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66865,7 +68652,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66876,7 +68663,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66887,7 +68674,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66909,7 +68696,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66920,7 +68707,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66931,7 +68718,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66942,7 +68729,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66953,7 +68740,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66964,7 +68751,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66975,7 +68762,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66986,7 +68773,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -66997,7 +68784,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67008,7 +68795,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67019,7 +68806,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67030,7 +68817,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67041,7 +68828,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67052,7 +68839,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67063,7 +68850,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67074,7 +68861,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67085,7 +68872,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67096,7 +68883,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67107,7 +68894,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67118,7 +68905,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67129,7 +68916,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67140,7 +68927,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67151,7 +68938,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67162,7 +68949,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67173,7 +68960,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67184,7 +68971,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67195,7 +68982,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67206,7 +68993,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67217,7 +69004,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67228,7 +69015,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67239,7 +69026,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67250,7 +69037,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67261,7 +69048,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67272,7 +69059,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67283,7 +69070,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67294,7 +69081,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67305,7 +69092,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67316,7 +69103,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67327,7 +69114,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67338,7 +69125,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67349,7 +69136,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67360,7 +69147,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67371,7 +69158,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67382,7 +69169,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67393,7 +69180,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67404,7 +69191,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67415,7 +69202,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67426,7 +69213,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67437,7 +69224,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67448,7 +69235,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67459,7 +69246,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67470,7 +69257,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67481,7 +69268,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67492,7 +69279,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67503,7 +69290,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67514,7 +69301,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67525,7 +69312,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67536,7 +69323,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67547,7 +69334,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67558,7 +69345,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67580,7 +69367,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67591,7 +69378,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67602,7 +69389,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67613,7 +69400,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67624,7 +69411,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67635,7 +69422,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67646,7 +69433,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67657,7 +69444,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67668,7 +69455,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67679,7 +69466,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67690,7 +69477,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67701,7 +69488,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67712,7 +69499,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67723,7 +69510,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67734,7 +69521,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67745,7 +69532,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67756,7 +69543,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67767,7 +69554,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67778,7 +69565,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67800,7 +69587,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67811,7 +69598,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67822,7 +69609,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67833,7 +69620,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67844,7 +69631,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67855,7 +69642,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67866,7 +69653,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67877,7 +69664,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67888,7 +69675,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67899,7 +69686,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67910,7 +69697,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67921,7 +69708,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67932,7 +69719,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67943,7 +69730,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67954,7 +69741,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67965,7 +69752,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67976,7 +69763,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -67987,7 +69774,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68009,7 +69796,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68020,7 +69807,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68031,7 +69818,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68042,7 +69829,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68119,7 +69906,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68174,7 +69961,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68207,7 +69994,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68218,7 +70005,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68240,7 +70027,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68262,7 +70049,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68273,7 +70060,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68284,7 +70071,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68306,7 +70093,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68372,7 +70159,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68405,7 +70192,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68460,7 +70247,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68480,26 +70267,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" }, { "Key_name": "auftragid", + "Index_type": "BTREE", "columns": [ "auftragid" - ] + ], + "Non_unique": "" } ] }, { "name": "produktion_arbeitsanweisung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -68508,7 +70302,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -68552,7 +70346,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68563,7 +70357,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68574,7 +70368,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68596,7 +70390,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68640,7 +70434,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68649,20 +70443,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "produktion", + "Index_type": "BTREE", "columns": [ "produktion" - ] + ], + "Non_unique": "" } ] }, { "name": "produktion_arbeitsanweisung_batch", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -68671,7 +70470,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -68704,7 +70503,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68715,7 +70514,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68737,7 +70536,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68748,7 +70547,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68768,26 +70567,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "produktion_arbeitsanweisung", + "Index_type": "BTREE", "columns": [ "produktion_arbeitsanweisung" - ] + ], + "Non_unique": "" }, { "Key_name": "produktion", + "Index_type": "BTREE", "columns": [ "produktion" - ] + ], + "Non_unique": "" } ] }, { "name": "produktion_baugruppen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -68796,7 +70602,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -68840,7 +70646,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68851,7 +70657,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68862,7 +70668,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68873,7 +70679,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -68937,20 +70743,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "produktion", + "Index_type": "BTREE", "columns": [ "produktion" - ] + ], + "Non_unique": "" } ] }, { "name": "produktion_baugruppen_charge", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -68959,7 +70770,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -69003,7 +70814,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69014,7 +70825,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69025,7 +70836,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69045,32 +70856,41 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "produktion", + "Index_type": "BTREE", "columns": [ "produktion" - ] + ], + "Non_unique": "" }, { "Key_name": "baugruppe", + "Index_type": "BTREE", "columns": [ "baugruppe" - ] + ], + "Non_unique": "" }, { "Key_name": "charge", + "Index_type": "BTREE", "columns": [ "charge" - ] + ], + "Non_unique": "" } ] }, { "name": "produktion_charge", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -69079,7 +70899,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -69112,7 +70932,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69123,7 +70943,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69134,7 +70954,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69145,7 +70965,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69156,7 +70976,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69167,7 +70987,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69198,26 +71018,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "produktion", + "Index_type": "BTREE", "columns": [ "produktion" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "produktion_etiketten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -69226,7 +71053,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -69301,20 +71128,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "produktion", + "Index_type": "BTREE", "columns": [ "produktion" - ] + ], + "Non_unique": "" } ] }, { "name": "produktion_funktionsprotokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -69323,7 +71155,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -69367,7 +71199,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69378,7 +71210,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69389,7 +71221,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69411,7 +71243,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69422,7 +71254,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69433,7 +71265,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69444,7 +71276,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69477,7 +71309,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69521,7 +71353,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69530,20 +71362,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "produktion", + "Index_type": "BTREE", "columns": [ "produktion" - ] + ], + "Non_unique": "" } ] }, { "name": "produktion_funktionsprotokoll_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -69552,7 +71389,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -69585,7 +71422,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69596,7 +71433,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69607,7 +71444,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69618,7 +71455,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69629,7 +71466,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69640,7 +71477,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69673,7 +71510,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69684,7 +71521,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69695,7 +71532,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69726,20 +71563,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "funktionsprotokoll", + "Index_type": "BTREE", "columns": [ "funktionsprotokoll" - ] + ], + "Non_unique": "" } ] }, { "name": "produktion_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -69748,7 +71590,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -69759,7 +71601,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69770,7 +71612,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69781,7 +71623,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69792,7 +71634,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69803,7 +71645,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69814,7 +71656,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69825,7 +71667,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69836,7 +71678,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69847,7 +71689,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69858,7 +71700,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69869,7 +71711,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69880,7 +71722,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69891,7 +71733,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69902,7 +71744,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69913,7 +71755,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69924,7 +71766,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69935,7 +71777,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69946,7 +71788,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69957,7 +71799,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69968,7 +71810,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -69990,7 +71832,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70023,7 +71865,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70034,7 +71876,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70045,7 +71887,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70056,7 +71898,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70078,7 +71920,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70089,7 +71931,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70100,7 +71942,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70111,7 +71953,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70122,7 +71964,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70133,7 +71975,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70144,7 +71986,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70155,7 +71997,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70166,7 +72008,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70177,7 +72019,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70188,7 +72030,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70199,7 +72041,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70210,7 +72052,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70221,7 +72063,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70232,7 +72074,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70243,7 +72085,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70254,7 +72096,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70265,7 +72107,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70276,7 +72118,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70287,7 +72129,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70298,7 +72140,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70309,7 +72151,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70320,7 +72162,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70331,7 +72173,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70342,7 +72184,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70353,7 +72195,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70364,7 +72206,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70375,7 +72217,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70386,7 +72228,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70397,7 +72239,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70408,7 +72250,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70419,7 +72261,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70430,7 +72272,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70441,7 +72283,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70452,7 +72294,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70463,7 +72305,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70474,7 +72316,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70485,7 +72327,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70496,7 +72338,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70507,7 +72349,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70538,32 +72380,41 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "produktion", + "Index_type": "BTREE", "columns": [ "produktion" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" }, { "Key_name": "explodiert_parent", + "Index_type": "BTREE", "columns": [ "explodiert_parent" - ] + ], + "Non_unique": "" } ] }, { "name": "produktion_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -70572,7 +72423,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -70594,7 +72445,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70605,7 +72456,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70616,7 +72467,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70625,20 +72476,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "produktion", + "Index_type": "BTREE", "columns": [ "produktion" - ] + ], + "Non_unique": "" } ] }, { "name": "produktion_unterseriennummern", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -70647,7 +72503,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -70691,7 +72547,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70702,7 +72558,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70735,7 +72591,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70744,20 +72600,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "baugruppe", + "Index_type": "BTREE", "columns": [ "baugruppe" - ] + ], + "Non_unique": "" } ] }, { "name": "produktionslager", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -70766,7 +72627,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -70777,7 +72638,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70788,7 +72649,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70799,7 +72660,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70810,7 +72671,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70821,7 +72682,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70832,7 +72693,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70843,7 +72704,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70854,7 +72715,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70865,7 +72726,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70876,7 +72737,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70896,14 +72757,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "proformarechnung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -70912,7 +72776,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -70923,7 +72787,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70934,7 +72798,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70945,7 +72809,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70956,7 +72820,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70967,7 +72831,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70978,7 +72842,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -70989,7 +72853,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71000,7 +72864,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71011,7 +72875,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71022,7 +72886,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71033,7 +72897,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71044,7 +72908,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71055,7 +72919,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71066,7 +72930,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71077,7 +72941,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71088,7 +72952,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71099,7 +72963,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71110,7 +72974,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71121,7 +72985,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71132,7 +72996,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71143,7 +73007,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71154,7 +73018,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71165,7 +73029,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71176,7 +73040,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71187,7 +73051,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71198,7 +73062,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71209,7 +73073,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71220,7 +73084,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71231,7 +73095,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71242,7 +73106,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71253,7 +73117,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71264,7 +73128,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71275,7 +73139,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71286,7 +73150,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71297,7 +73161,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71308,7 +73172,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71319,7 +73183,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71352,7 +73216,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71363,7 +73227,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71374,7 +73238,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71385,7 +73249,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71396,7 +73260,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71407,7 +73271,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71418,7 +73282,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71429,7 +73293,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71440,7 +73304,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71451,7 +73315,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71462,7 +73326,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71473,7 +73337,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71484,7 +73348,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71495,7 +73359,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71506,7 +73370,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71517,7 +73381,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71539,7 +73403,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71704,7 +73568,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71715,7 +73579,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71726,7 +73590,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71737,7 +73601,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71748,7 +73612,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71770,7 +73634,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71781,7 +73645,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71792,7 +73656,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71803,7 +73667,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71814,7 +73678,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71825,7 +73689,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71847,7 +73711,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71858,7 +73722,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71869,7 +73733,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71880,7 +73744,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71891,7 +73755,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71902,7 +73766,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71913,7 +73777,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71924,7 +73788,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71935,7 +73799,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -71946,7 +73810,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72012,7 +73876,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72023,7 +73887,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72078,7 +73942,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72111,7 +73975,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72144,7 +74008,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72155,7 +74019,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72177,7 +74041,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72188,7 +74052,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72199,7 +74063,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72210,7 +74074,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72221,7 +74085,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72232,7 +74096,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72243,7 +74107,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72254,7 +74118,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72265,7 +74129,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72276,7 +74140,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72287,7 +74151,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72298,7 +74162,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72309,7 +74173,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72320,7 +74184,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72331,7 +74195,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72342,7 +74206,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72353,7 +74217,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72364,7 +74228,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72375,7 +74239,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72397,7 +74261,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72408,7 +74272,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72419,7 +74283,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72430,7 +74294,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72441,7 +74305,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72452,7 +74316,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72463,7 +74327,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72474,7 +74338,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72485,7 +74349,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72496,7 +74360,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72507,7 +74371,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72518,7 +74382,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72540,7 +74404,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72551,7 +74415,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72560,14 +74424,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "proformarechnung_lieferschein", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -72576,7 +74443,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -72629,14 +74496,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "proformarechnung_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -72645,7 +74515,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -72656,7 +74526,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72667,7 +74537,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72678,7 +74548,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72689,7 +74559,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72700,7 +74570,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72711,7 +74581,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72722,7 +74592,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72733,7 +74603,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72755,7 +74625,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72766,7 +74636,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72777,7 +74647,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72788,7 +74658,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72799,7 +74669,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72810,7 +74680,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72821,7 +74691,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72854,7 +74724,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72865,7 +74735,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72876,7 +74746,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72887,7 +74757,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72898,7 +74768,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72909,7 +74779,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72920,7 +74790,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72931,7 +74801,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72942,7 +74812,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72953,7 +74823,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72964,7 +74834,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72975,7 +74845,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72986,7 +74856,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -72997,7 +74867,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73030,7 +74900,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73074,7 +74944,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73085,7 +74955,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73096,7 +74966,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73107,7 +74977,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73118,7 +74988,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73129,7 +74999,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73140,7 +75010,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73151,7 +75021,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73162,7 +75032,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73173,7 +75043,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73184,7 +75054,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73195,7 +75065,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73206,7 +75076,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73217,7 +75087,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73239,7 +75109,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73250,7 +75120,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73261,7 +75131,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73272,7 +75142,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73283,7 +75153,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73294,7 +75164,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73305,7 +75175,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73316,7 +75186,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73327,7 +75197,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73338,7 +75208,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73349,7 +75219,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73360,7 +75230,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73371,7 +75241,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73382,7 +75252,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73393,7 +75263,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73404,7 +75274,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73415,7 +75285,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73426,7 +75296,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73437,7 +75307,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73448,7 +75318,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73459,7 +75329,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73470,7 +75340,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73481,7 +75351,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73492,7 +75362,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73503,7 +75373,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73514,7 +75384,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73525,7 +75395,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73536,7 +75406,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73547,7 +75417,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73558,7 +75428,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73569,7 +75439,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73580,7 +75450,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73591,7 +75461,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73600,20 +75470,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "proformarechnung", + "Index_type": "BTREE", "columns": [ "proformarechnung" - ] + ], + "Non_unique": "" } ] }, { "name": "proformarechnung_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -73622,7 +75497,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -73633,7 +75508,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73644,7 +75519,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73655,7 +75530,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73666,7 +75541,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73675,14 +75550,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "projekt", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -73691,7 +75569,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -73702,7 +75580,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73713,7 +75591,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73724,7 +75602,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73735,7 +75613,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73746,7 +75624,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73757,7 +75635,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73768,7 +75646,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73779,7 +75657,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73790,7 +75668,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73801,7 +75679,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73812,7 +75690,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73823,7 +75701,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73834,7 +75712,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73845,7 +75723,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73856,7 +75734,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73867,7 +75745,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73878,7 +75756,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73889,7 +75767,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73900,7 +75778,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73911,7 +75789,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73922,7 +75800,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73933,7 +75811,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73944,7 +75822,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -73955,7 +75833,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74021,7 +75899,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74087,7 +75965,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74098,7 +75976,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74131,7 +76009,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74142,7 +76020,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74153,7 +76031,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74164,7 +76042,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74175,7 +76053,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74186,7 +76064,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74197,7 +76075,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74208,7 +76086,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74274,7 +76152,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74285,7 +76163,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74296,7 +76174,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74307,7 +76185,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74318,7 +76196,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74329,7 +76207,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74340,7 +76218,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74351,7 +76229,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74362,7 +76240,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74384,7 +76262,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74395,7 +76273,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74406,7 +76284,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74417,7 +76295,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74428,7 +76306,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74439,7 +76317,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74450,7 +76328,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74461,7 +76339,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74472,7 +76350,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74483,7 +76361,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74494,7 +76372,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74560,7 +76438,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74571,7 +76449,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74582,7 +76460,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74593,7 +76471,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74604,7 +76482,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74615,7 +76493,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74626,7 +76504,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74637,7 +76515,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74648,7 +76526,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74659,7 +76537,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74670,7 +76548,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74681,7 +76559,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74692,7 +76570,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74703,7 +76581,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74714,7 +76592,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74780,7 +76658,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74791,7 +76669,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74802,7 +76680,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74813,7 +76691,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74824,7 +76702,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74835,7 +76713,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74846,7 +76724,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74857,7 +76735,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74868,7 +76746,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74879,7 +76757,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74890,7 +76768,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74901,7 +76779,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74912,7 +76790,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74923,7 +76801,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74934,7 +76812,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74945,7 +76823,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74956,7 +76834,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74967,7 +76845,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74978,7 +76856,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -74989,7 +76867,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75000,7 +76878,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75099,7 +76977,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75110,7 +76988,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75539,7 +77417,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75550,7 +77428,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75561,7 +77439,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75572,7 +77450,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75583,7 +77461,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75594,7 +77472,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75605,7 +77483,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75616,7 +77494,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75627,7 +77505,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75638,7 +77516,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75649,7 +77527,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75660,7 +77538,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75671,7 +77549,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75682,7 +77560,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75693,7 +77571,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75704,7 +77582,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75715,7 +77593,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75726,7 +77604,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75737,7 +77615,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75748,7 +77626,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75759,7 +77637,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75770,7 +77648,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75781,7 +77659,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75792,7 +77670,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75803,7 +77681,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75814,7 +77692,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75902,7 +77780,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -75913,7 +77791,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76089,7 +77967,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76100,7 +77978,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76122,7 +78000,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76133,7 +78011,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76144,7 +78022,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76155,7 +78033,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76166,7 +78044,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76177,7 +78055,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76188,7 +78066,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76199,7 +78077,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76210,7 +78088,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76221,7 +78099,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76232,7 +78110,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76243,7 +78121,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76254,7 +78132,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76265,7 +78143,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76276,7 +78154,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76287,7 +78165,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76441,7 +78319,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76452,7 +78330,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76463,7 +78341,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76474,7 +78352,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76485,7 +78363,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76496,7 +78374,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76507,7 +78385,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76518,7 +78396,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76672,7 +78550,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76694,7 +78572,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76738,7 +78616,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76749,7 +78627,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76760,7 +78638,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76771,7 +78649,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76782,7 +78660,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76793,7 +78671,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76804,7 +78682,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76815,7 +78693,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76826,7 +78704,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76837,7 +78715,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76848,7 +78726,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76859,7 +78737,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76870,7 +78748,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76881,7 +78759,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76892,7 +78770,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76903,7 +78781,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76914,7 +78792,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76925,7 +78803,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76936,7 +78814,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76947,7 +78825,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -76958,7 +78836,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77035,7 +78913,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77046,7 +78924,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77057,7 +78935,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77068,7 +78946,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77079,7 +78957,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77134,7 +79012,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77145,7 +79023,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77156,7 +79034,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77167,7 +79045,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77178,7 +79056,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77189,7 +79067,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77200,7 +79078,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77211,7 +79089,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77222,7 +79100,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77233,7 +79111,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77244,7 +79122,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77255,7 +79133,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77266,7 +79144,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77277,7 +79155,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77409,7 +79287,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77420,7 +79298,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77585,7 +79463,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77596,7 +79474,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77656,24 +79534,13 @@ "Privileges": "select,insert,update,references", "Comment": "" }, - { - "Field": "kasse_print_qr", - "Type": "tinyint(1)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, { "Field": "next_receiptdocument", "Type": "text", "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77690,12 +79557,23 @@ "Comment": "" }, { - "Field": "buchhaltung_berater", - "Type": "varchar(64)", + "Field": "kasse_print_qr", + "Type": "tinyint(1)", "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": "0", + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "buchhaltung_berater", + "Type": "varchar(64)", + "Collation": "utf8mb3_general_ci", + "Null": "NO", + "Key": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77703,10 +79581,10 @@ { "Field": "buchhaltung_mandant", "Type": "varchar(64)", - "Collation": null, + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77714,14 +79592,14 @@ { "Field": "buchhaltung_wj_beginn", "Type": "varchar(4)", - "Collation": null, + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", "Default": "'0101'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" - }, + }, { "Field": "buchhaltung_sachkontenlaenge", "Type": "int(1)", @@ -77733,31 +79611,37 @@ "Privileges": "select,insert,update,references", "Comment": "" } - ], "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "abkuerzung", + "Index_type": "BTREE", "columns": [ "abkuerzung" - ] + ], + "Non_unique": "" }, { "Key_name": "kunde", + "Index_type": "BTREE", "columns": [ "kunde" - ] + ], + "Non_unique": "" } ] }, { "name": "projekt_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -77766,7 +79650,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -77832,7 +79716,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77843,7 +79727,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77854,7 +79738,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77865,7 +79749,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77876,7 +79760,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77887,7 +79771,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77898,7 +79782,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77909,7 +79793,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77920,7 +79804,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77964,7 +79848,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77975,7 +79859,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77986,7 +79870,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -77997,7 +79881,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78019,7 +79903,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78030,7 +79914,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78050,14 +79934,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "projekt_inventar", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -78066,7 +79953,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -78077,7 +79964,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78088,7 +79975,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78099,7 +79986,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78110,7 +79997,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78121,7 +80008,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78132,7 +80019,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78143,7 +80030,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78154,7 +80041,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78174,14 +80061,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -78190,7 +80080,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -78201,7 +80091,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78212,7 +80102,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78223,7 +80113,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78234,7 +80124,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78245,7 +80135,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78256,7 +80146,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78267,7 +80157,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78289,7 +80179,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78298,14 +80188,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "provision_regeln", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -78314,7 +80207,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -78325,7 +80218,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78336,7 +80229,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78391,7 +80284,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78402,7 +80295,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78413,7 +80306,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78457,7 +80350,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78477,32 +80370,41 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "gruppe", + "Index_type": "BTREE", "columns": [ "gruppe" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "provisionenartikel_abrechnungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -78511,7 +80413,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -78522,7 +80424,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78533,7 +80435,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78544,7 +80446,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78608,20 +80510,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "userid", + "Index_type": "BTREE", "columns": [ "userid" - ] + ], + "Non_unique": "" } ] }, { "name": "provisionenartikel_abrechnungen_provisionen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -78630,7 +80537,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -78663,7 +80570,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78685,7 +80592,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78718,7 +80625,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78839,7 +80746,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78850,7 +80757,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78859,14 +80766,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "provisionenartikel_provision", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -78875,7 +80785,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -78930,7 +80840,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78941,7 +80851,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78952,7 +80862,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -78983,14 +80893,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "prozessstarter", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -78999,7 +80912,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79010,7 +80923,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79021,7 +80934,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79032,7 +80945,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79043,7 +80956,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79054,7 +80967,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79076,7 +80989,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79087,7 +81000,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79098,7 +81011,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79109,7 +81022,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79120,7 +81033,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79131,7 +81044,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79142,7 +81055,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79153,7 +81066,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79184,20 +81097,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "parameter", + "Index_type": "BTREE", "columns": [ "parameter" - ] + ], + "Non_unique": "" } ] }, { "name": "pseudostorage_shop", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -79206,7 +81124,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79228,7 +81146,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79237,20 +81155,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id" - ] + ], + "Non_unique": "" } ] }, { "name": "real_article_mapping", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -79259,7 +81182,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79270,7 +81193,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79281,7 +81204,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79303,7 +81226,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79314,7 +81237,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79325,7 +81248,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79336,7 +81259,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79347,7 +81270,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79356,14 +81279,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "real_kategoriespezifisch", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -79372,7 +81298,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79383,7 +81309,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79394,7 +81320,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79405,7 +81331,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79427,7 +81353,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79438,7 +81364,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79449,7 +81375,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79471,7 +81397,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79482,7 +81408,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79491,14 +81417,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "real_kategorievorschlag", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -79507,7 +81436,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79518,7 +81447,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79529,7 +81458,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79540,7 +81469,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79551,7 +81480,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79562,7 +81491,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79573,7 +81502,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79584,7 +81513,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79604,14 +81533,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "real_versandgruppen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -79620,7 +81552,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79631,7 +81563,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79642,7 +81574,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79662,14 +81594,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "receiptdocument", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -79678,7 +81613,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79744,7 +81679,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79755,7 +81690,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79766,7 +81701,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79777,7 +81712,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79830,14 +81765,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "receiptdocument_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -79846,7 +81784,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79868,7 +81806,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79879,7 +81817,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -79899,20 +81837,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "receiptdocument_id", + "Index_type": "BTREE", "columns": [ "receiptdocument_id" - ] + ], + "Non_unique": "" } ] }, { "name": "receiptdocument_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -79921,7 +81864,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -79998,7 +81941,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80009,7 +81952,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80040,20 +81983,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "receiptdocument_id", + "Index_type": "BTREE", "columns": [ "receiptdocument_id" - ] + ], + "Non_unique": "" } ] }, { "name": "rechnung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -80062,7 +82010,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -80073,7 +82021,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80084,7 +82032,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80095,7 +82043,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80106,7 +82054,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80117,7 +82065,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80128,7 +82076,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80139,7 +82087,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80150,7 +82098,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80161,7 +82109,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80172,7 +82120,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80183,7 +82131,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80194,7 +82142,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80205,7 +82153,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80216,7 +82164,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80227,7 +82175,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80238,7 +82186,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80249,7 +82197,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80260,7 +82208,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80271,7 +82219,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80282,7 +82230,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80293,7 +82241,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80304,7 +82252,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80315,7 +82263,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80326,7 +82274,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80337,7 +82285,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80348,7 +82296,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80359,7 +82307,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80370,7 +82318,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80381,7 +82329,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80392,7 +82340,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80403,7 +82351,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80414,7 +82362,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80425,7 +82373,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80436,7 +82384,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80447,7 +82395,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80458,7 +82406,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80469,7 +82417,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80502,7 +82450,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80513,7 +82461,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80524,7 +82472,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80535,7 +82483,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80546,7 +82494,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80557,7 +82505,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80568,7 +82516,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80579,7 +82527,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80590,7 +82538,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80601,7 +82549,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80612,7 +82560,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80623,7 +82571,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80634,7 +82582,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80645,7 +82593,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80656,7 +82604,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80667,7 +82615,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80689,7 +82637,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80854,7 +82802,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80865,7 +82813,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80876,7 +82824,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80887,7 +82835,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80898,7 +82846,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80920,7 +82868,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80931,7 +82879,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80942,7 +82890,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80953,7 +82901,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80964,7 +82912,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80975,7 +82923,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -80997,7 +82945,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81008,7 +82956,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81019,7 +82967,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81030,7 +82978,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81041,7 +82989,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81052,7 +83000,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81063,7 +83011,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81074,7 +83022,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81085,7 +83033,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81096,7 +83044,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81162,7 +83110,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81173,7 +83121,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81228,7 +83176,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81261,7 +83209,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81294,7 +83242,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81305,7 +83253,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81327,7 +83275,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81338,7 +83286,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81349,7 +83297,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81360,7 +83308,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81371,7 +83319,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81382,7 +83330,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81404,7 +83352,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81426,7 +83374,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81437,7 +83385,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81448,7 +83396,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81459,7 +83407,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81470,7 +83418,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81514,7 +83462,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81525,7 +83473,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81536,7 +83484,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81545,80 +83493,105 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "projekt", + "Index_type": "BTREE", "columns": [ "projekt" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" }, { "Key_name": "auftragid", + "Index_type": "BTREE", "columns": [ "auftragid" - ] + ], + "Non_unique": "" }, { "Key_name": "status", + "Index_type": "BTREE", "columns": [ "status" - ] + ], + "Non_unique": "" }, { "Key_name": "datum", + "Index_type": "BTREE", "columns": [ "datum" - ] + ], + "Non_unique": "" }, { "Key_name": "belegnr", + "Index_type": "BTREE", "columns": [ "belegnr" - ] + ], + "Non_unique": "" }, { "Key_name": "soll", + "Index_type": "BTREE", "columns": [ "soll" - ] + ], + "Non_unique": "" }, { "Key_name": "zahlungsstatus", + "Index_type": "BTREE", "columns": [ "zahlungsstatus" - ] + ], + "Non_unique": "" }, { "Key_name": "provdatum", + "Index_type": "BTREE", "columns": [ "provdatum" - ] + ], + "Non_unique": "" }, { "Key_name": "lieferschein", + "Index_type": "BTREE", "columns": [ "lieferschein" - ] + ], + "Non_unique": "" }, { "Key_name": "versandart", + "Index_type": "BTREE", "columns": [ "versandart" - ] + ], + "Non_unique": "" } ] }, { "name": "rechnung_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -81627,7 +83600,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -81638,7 +83611,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81649,7 +83622,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81660,7 +83633,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81671,7 +83644,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81682,7 +83655,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81693,7 +83666,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81704,7 +83677,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81715,7 +83688,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81737,7 +83710,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81748,7 +83721,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81759,7 +83732,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81770,7 +83743,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81781,7 +83754,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81792,7 +83765,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81803,7 +83776,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81836,7 +83809,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81847,7 +83820,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81858,7 +83831,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81869,7 +83842,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81880,7 +83853,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81891,7 +83864,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81902,7 +83875,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81913,7 +83886,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81924,7 +83897,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81935,7 +83908,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81946,7 +83919,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81957,7 +83930,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81968,7 +83941,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -81979,7 +83952,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82012,7 +83985,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82023,7 +83996,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82034,7 +84007,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82045,7 +84018,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82056,7 +84029,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82067,7 +84040,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82078,7 +84051,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82089,7 +84062,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82100,7 +84073,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82111,7 +84084,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82122,7 +84095,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82166,7 +84139,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82177,7 +84150,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82188,7 +84161,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82199,7 +84172,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82221,7 +84194,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82265,7 +84238,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82287,7 +84260,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82298,7 +84271,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82309,7 +84282,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82320,7 +84293,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82331,7 +84304,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82342,7 +84315,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82353,7 +84326,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82364,7 +84337,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82375,7 +84348,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82386,7 +84359,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82397,7 +84370,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82408,7 +84381,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82419,7 +84392,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82430,7 +84403,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82441,7 +84414,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82452,7 +84425,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82463,7 +84436,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82474,7 +84447,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82485,7 +84458,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82496,7 +84469,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82507,7 +84480,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82518,7 +84491,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82529,7 +84502,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82540,7 +84513,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82551,7 +84524,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82562,7 +84535,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82573,7 +84546,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82584,7 +84557,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82595,7 +84568,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82606,7 +84579,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82617,7 +84590,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82628,7 +84601,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82650,7 +84623,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82661,7 +84634,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82672,7 +84645,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82683,7 +84656,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82694,7 +84667,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82705,7 +84678,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82738,7 +84711,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82749,7 +84722,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82760,7 +84733,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82771,7 +84744,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82780,32 +84753,41 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "rechnung", + "Index_type": "BTREE", "columns": [ "rechnung" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" }, { "Key_name": "auftrag_position_id", + "Index_type": "BTREE", "columns": [ "auftrag_position_id" - ] + ], + "Non_unique": "" } ] }, { "name": "rechnung_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -82814,7 +84796,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -82825,7 +84807,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82836,7 +84818,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82847,7 +84829,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82858,7 +84840,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82867,20 +84849,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "rechnung", + "Index_type": "BTREE", "columns": [ "rechnung" - ] + ], + "Non_unique": "" } ] }, { "name": "reisekosten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -82889,7 +84876,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -82900,7 +84887,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82911,7 +84898,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82922,7 +84909,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82933,7 +84920,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82944,7 +84931,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82955,7 +84942,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82966,7 +84953,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82977,7 +84964,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82988,7 +84975,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -82999,7 +84986,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83010,7 +84997,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83021,7 +85008,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83032,7 +85019,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83043,7 +85030,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83054,7 +85041,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83065,7 +85052,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83076,7 +85063,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83087,7 +85074,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83098,7 +85085,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83109,7 +85096,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83120,7 +85107,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83131,7 +85118,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83142,7 +85129,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83153,7 +85140,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83164,7 +85151,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83175,7 +85162,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83186,7 +85173,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83197,7 +85184,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83208,7 +85195,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83219,7 +85206,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83230,7 +85217,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83241,7 +85228,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83252,7 +85239,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83263,7 +85250,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83274,7 +85261,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83285,7 +85272,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83307,7 +85294,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83318,7 +85305,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83329,7 +85316,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83406,7 +85393,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83417,7 +85404,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83428,7 +85415,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83439,7 +85426,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83450,7 +85437,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83461,7 +85448,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83472,7 +85459,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83525,14 +85512,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "reisekosten_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -83541,7 +85531,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -83552,7 +85542,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83563,7 +85553,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83574,7 +85564,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83585,7 +85575,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83596,7 +85586,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83607,7 +85597,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83618,7 +85608,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83629,7 +85619,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83640,7 +85630,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83651,7 +85641,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83662,7 +85652,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83673,7 +85663,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83684,7 +85674,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83695,7 +85685,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83706,7 +85696,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83717,7 +85707,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83728,7 +85718,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83739,7 +85729,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83750,7 +85740,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83761,7 +85751,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83772,7 +85762,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83794,7 +85784,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83805,7 +85795,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83816,7 +85806,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83827,7 +85817,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83838,7 +85828,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83849,7 +85839,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83891,20 +85881,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "reisekosten", + "Index_type": "BTREE", "columns": [ "reisekosten" - ] + ], + "Non_unique": "" } ] }, { "name": "reisekosten_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -83913,7 +85908,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -83924,7 +85919,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83935,7 +85930,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83946,7 +85941,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83957,7 +85952,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -83966,20 +85961,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "reisekosten", + "Index_type": "BTREE", "columns": [ "reisekosten" - ] + ], + "Non_unique": "" } ] }, { "name": "reisekostenart", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -83988,7 +85988,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -83999,7 +85999,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84010,7 +86010,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84021,7 +86021,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84030,14 +86030,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "report", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -84046,7 +86049,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -84057,7 +86060,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84068,7 +86071,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84090,7 +86093,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84101,7 +86104,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84112,7 +86115,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84134,7 +86137,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84145,7 +86148,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84154,14 +86157,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "report_column", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -84170,7 +86176,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -84192,7 +86198,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84203,7 +86209,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84214,7 +86220,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84225,7 +86231,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84258,7 +86264,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84269,7 +86275,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84280,7 +86286,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84289,14 +86295,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "report_favorite", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -84305,7 +86314,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -84336,14 +86345,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "report_parameter", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -84352,7 +86364,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -84374,7 +86386,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84385,7 +86397,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84396,7 +86408,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84407,7 +86419,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84418,7 +86430,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84429,7 +86441,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84451,7 +86463,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84460,14 +86472,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "report_share", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -84476,7 +86491,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -84509,7 +86524,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84520,7 +86535,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84531,7 +86546,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84542,7 +86557,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84553,7 +86568,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84564,7 +86579,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84586,7 +86601,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84652,7 +86667,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84663,7 +86678,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84674,7 +86689,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84696,7 +86711,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84707,7 +86722,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84718,7 +86733,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84729,7 +86744,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84738,14 +86753,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "report_transfer", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -84754,7 +86772,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -84787,7 +86805,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84798,7 +86816,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84809,7 +86827,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84820,7 +86838,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84831,7 +86849,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84842,7 +86860,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84853,7 +86871,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84864,7 +86882,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84875,7 +86893,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84886,7 +86904,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84897,18 +86915,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", - "Extra": "", - "Privileges": "select,insert,update,references", - "Comment": "" - }, - { - "Field": "ftp_passive", - "Type": "int(1)", - "Collation": null, - "Null": "NO", - "Key": "", - "Default": "0", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84930,7 +86937,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84941,7 +86948,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84952,7 +86959,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84963,7 +86970,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84974,7 +86981,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84985,7 +86992,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -84996,7 +87003,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85007,7 +87014,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85018,7 +87025,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85029,7 +87036,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85040,7 +87047,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85051,7 +87058,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85062,7 +87069,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85095,7 +87102,18 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, + { + "Field": "ftp_passive", + "Type": "int(1)", + "Collation": null, + "Null": "NO", + "Key": "", + "Default": "0", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85104,14 +87122,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "report_user", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -85120,7 +87141,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -85153,7 +87174,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85206,14 +87227,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "retoure", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -85222,7 +87246,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -85233,7 +87257,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85244,7 +87268,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85255,7 +87279,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85266,7 +87290,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85277,7 +87301,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85288,7 +87312,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85299,7 +87323,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85310,7 +87334,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85321,7 +87345,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85332,7 +87356,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85343,7 +87367,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85354,7 +87378,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85365,7 +87389,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85376,7 +87400,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85387,7 +87411,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85398,7 +87422,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85409,7 +87433,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85420,7 +87444,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85431,7 +87455,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85442,7 +87466,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85464,7 +87488,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85475,7 +87499,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85486,7 +87510,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85497,7 +87521,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85508,7 +87532,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85519,7 +87543,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85530,7 +87554,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85541,7 +87565,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85552,7 +87576,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85563,7 +87587,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85574,7 +87598,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85585,7 +87609,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85596,7 +87620,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85607,7 +87631,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85618,7 +87642,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85629,7 +87653,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85640,7 +87664,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85651,7 +87675,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85662,7 +87686,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85673,7 +87697,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85684,7 +87708,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85695,7 +87719,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85706,7 +87730,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85728,7 +87752,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85739,7 +87763,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85750,7 +87774,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85761,7 +87785,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85772,7 +87796,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85783,7 +87807,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85816,7 +87840,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85882,7 +87906,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85893,7 +87917,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85959,7 +87983,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85970,7 +87994,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -85992,7 +88016,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86003,7 +88027,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86014,7 +88038,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86036,7 +88060,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86058,7 +88082,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86080,7 +88104,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86091,7 +88115,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86102,7 +88126,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86135,7 +88159,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86179,7 +88203,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86210,32 +88234,41 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" }, { "Key_name": "status", + "Index_type": "BTREE", "columns": [ "status" - ] + ], + "Non_unique": "" }, { "Key_name": "versandart", + "Index_type": "BTREE", "columns": [ "versandart" - ] + ], + "Non_unique": "" } ] }, { "name": "retoure_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -86244,7 +88277,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -86255,7 +88288,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86266,7 +88299,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86277,7 +88310,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86288,7 +88321,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86299,7 +88332,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86310,7 +88343,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86321,7 +88354,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86332,7 +88365,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86343,7 +88376,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86354,7 +88387,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86365,7 +88398,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86376,7 +88409,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86387,7 +88420,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86398,7 +88431,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86409,7 +88442,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86420,7 +88453,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86453,7 +88486,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86486,7 +88519,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86497,7 +88530,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86508,7 +88541,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86519,7 +88552,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86530,7 +88563,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86541,7 +88574,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86552,7 +88585,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86563,7 +88596,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86574,7 +88607,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86585,7 +88618,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86596,7 +88629,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86607,7 +88640,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86618,7 +88651,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86629,7 +88662,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86640,7 +88673,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86651,7 +88684,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86662,7 +88695,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86673,7 +88706,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86684,7 +88717,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86695,7 +88728,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86706,7 +88739,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86717,7 +88750,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86728,7 +88761,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86739,7 +88772,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86750,7 +88783,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86761,7 +88794,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86772,7 +88805,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86783,7 +88816,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86794,7 +88827,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86805,7 +88838,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86816,7 +88849,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86827,7 +88860,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86838,7 +88871,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86849,7 +88882,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86860,7 +88893,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86871,7 +88904,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86882,7 +88915,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86893,7 +88926,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86904,7 +88937,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86915,7 +88948,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86926,7 +88959,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -86981,7 +89014,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87025,7 +89058,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87036,7 +89069,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87047,7 +89080,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87058,7 +89091,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87100,20 +89133,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "retoure", + "Index_type": "BTREE", "columns": [ "retoure" - ] + ], + "Non_unique": "" } ] }, { "name": "retoure_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -87122,7 +89160,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -87133,7 +89171,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87144,7 +89182,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87155,7 +89193,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87166,7 +89204,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87175,20 +89213,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "retoure", + "Index_type": "BTREE", "columns": [ "retoure" - ] + ], + "Non_unique": "" } ] }, { "name": "returnorder_quantity", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -87197,7 +89240,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -87219,7 +89262,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87230,7 +89273,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87241,7 +89284,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87252,7 +89295,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87261,20 +89304,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "delivery_note_id", + "Index_type": "BTREE", "columns": [ "delivery_note_id" - ] + ], + "Non_unique": "" } ] }, { "name": "rma", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -87283,7 +89331,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -87294,7 +89342,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87305,7 +89353,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87316,7 +89364,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87327,7 +89375,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87338,7 +89386,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87349,7 +89397,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87360,7 +89408,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87371,7 +89419,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87382,7 +89430,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87393,7 +89441,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87404,7 +89452,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87415,7 +89463,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87426,7 +89474,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87437,7 +89485,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87448,7 +89496,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87459,7 +89507,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87470,7 +89518,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87481,7 +89529,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87492,7 +89540,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87503,7 +89551,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87514,7 +89562,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87525,7 +89573,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87536,7 +89584,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87547,7 +89595,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87558,7 +89606,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87569,7 +89617,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87580,7 +89628,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87591,7 +89639,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87602,7 +89650,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87613,7 +89661,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87624,7 +89672,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87635,7 +89683,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87646,7 +89694,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87666,14 +89714,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "rma_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -87682,7 +89733,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -87693,7 +89744,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87704,7 +89755,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87715,7 +89766,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87726,7 +89777,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87737,7 +89788,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87748,7 +89799,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87759,7 +89810,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87770,7 +89821,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87781,7 +89832,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87792,7 +89843,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87814,7 +89865,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87825,7 +89876,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87836,7 +89887,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87847,7 +89898,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87858,7 +89909,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87867,20 +89918,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "rma_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -87889,7 +89945,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -87944,7 +90000,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -87964,14 +90020,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "rma_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -87980,7 +90039,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88013,7 +90072,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88024,7 +90083,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88035,7 +90094,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88046,7 +90105,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88057,7 +90116,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88077,14 +90136,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "rma_vorlagen_grund", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88093,7 +90155,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88104,7 +90166,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88115,7 +90177,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88126,7 +90188,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88179,20 +90241,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "rmakategorie", + "Index_type": "BTREE", "columns": [ "rmakategorie" - ] + ], + "Non_unique": "" } ] }, { "name": "rma_vorlagen_kategorien", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88201,7 +90268,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88212,7 +90279,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88223,7 +90290,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88234,7 +90301,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88243,14 +90310,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "rohstoffe", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88259,7 +90329,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88270,7 +90340,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88325,7 +90395,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88345,14 +90415,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "sammelrechnung_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88361,7 +90434,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88458,32 +90531,41 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "lieferschein_position_id", + "Index_type": "BTREE", "columns": [ "lieferschein_position_id" - ] + ], + "Non_unique": "" }, { "Key_name": "auftrag_position_id", + "Index_type": "BTREE", "columns": [ "auftrag_position_id" - ] + ], + "Non_unique": "" }, { "Key_name": "rechnung", + "Index_type": "BTREE", "columns": [ "rechnung" - ] + ], + "Non_unique": "" } ] }, { "name": "scheck_checked", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88492,7 +90574,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88503,7 +90585,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88514,7 +90596,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88523,14 +90605,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "scheck_druck", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88539,7 +90624,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88561,7 +90646,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88603,14 +90688,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "scheck_gutschrift", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88619,7 +90707,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88650,14 +90738,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "seriennummern", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88666,7 +90757,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88677,7 +90768,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88688,7 +90779,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88699,7 +90790,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88710,7 +90801,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88721,7 +90812,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88732,7 +90823,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88743,7 +90834,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88754,7 +90845,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88765,7 +90856,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88774,14 +90865,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "seriennummern_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88790,7 +90884,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -88834,7 +90928,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88845,7 +90939,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88856,7 +90950,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88900,7 +90994,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88922,7 +91016,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88933,7 +91027,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -88953,14 +91047,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "service", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -88969,7 +91066,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -89002,7 +91099,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89013,7 +91110,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89035,7 +91132,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89046,7 +91143,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89057,7 +91154,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89068,7 +91165,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89079,7 +91176,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89090,7 +91187,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89101,7 +91198,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89145,7 +91242,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89189,7 +91286,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89222,7 +91319,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89233,7 +91330,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89244,7 +91341,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89255,7 +91352,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89266,7 +91363,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89277,7 +91374,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89288,7 +91385,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89299,7 +91396,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89310,7 +91407,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89321,7 +91418,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89332,7 +91429,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89343,7 +91440,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89352,20 +91449,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "nummer", + "Index_type": "BTREE", "columns": [ "nummer" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "sevensenders_shipment", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -89374,7 +91476,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -89396,7 +91498,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89407,7 +91509,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89418,7 +91520,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89429,7 +91531,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89440,7 +91542,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89449,14 +91551,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -89465,7 +91570,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -89476,7 +91581,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89487,7 +91592,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89498,7 +91603,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89509,7 +91614,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89520,7 +91625,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89531,7 +91636,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89542,7 +91647,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89553,7 +91658,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89564,7 +91669,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -89784,7 +91889,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90004,7 +92109,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90037,7 +92142,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90059,7 +92164,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90169,7 +92274,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90180,7 +92285,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90235,7 +92340,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90246,7 +92351,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90257,7 +92362,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90356,7 +92461,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90497,14 +92602,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_adressenuebertragen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90513,7 +92621,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90524,7 +92632,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90535,7 +92643,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90544,14 +92652,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_archiv", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90560,7 +92671,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90604,7 +92715,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90615,7 +92726,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90626,7 +92737,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90659,7 +92770,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90670,7 +92781,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90725,7 +92836,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90756,20 +92867,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop", + "Index_type": "BTREE", "columns": [ "shop" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90778,7 +92894,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90811,7 +92927,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90822,7 +92938,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90833,7 +92949,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90853,21 +92969,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shopid", + "Index_type": "BTREE", "columns": [ "shopid", "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_artikeluebertragen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90876,7 +92997,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90887,7 +93008,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90898,7 +93019,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90918,14 +93039,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_artikeluebertragen_check", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90934,7 +93058,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90945,7 +93069,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90956,7 +93080,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -90965,14 +93089,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_change_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -90981,7 +93108,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -90992,7 +93119,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91003,7 +93130,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91014,7 +93141,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91036,7 +93163,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91047,7 +93174,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91056,14 +93183,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_freifelder", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91072,7 +93202,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91083,7 +93213,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91094,7 +93224,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91105,7 +93235,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91138,7 +93268,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91149,7 +93279,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91158,14 +93288,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_getarticles", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91174,7 +93307,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91185,7 +93318,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91196,7 +93329,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91205,20 +93338,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop", + "Index_type": "BTREE", "columns": [ "shop" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_kampange", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91227,7 +93365,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91238,7 +93376,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91249,7 +93387,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91260,7 +93398,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91271,7 +93409,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91282,7 +93420,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91293,7 +93431,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91304,7 +93442,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91315,7 +93453,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91326,7 +93464,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91337,7 +93475,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91348,7 +93486,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91359,7 +93497,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91370,7 +93508,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91381,7 +93519,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91390,14 +93528,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_kategorien", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91406,7 +93547,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91450,7 +93591,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91461,7 +93602,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91472,7 +93613,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91505,7 +93646,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91516,7 +93657,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91525,26 +93666,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop", + "Index_type": "BTREE", "columns": [ "shop" - ] + ], + "Non_unique": "" }, { "Key_name": "kategorie", + "Index_type": "BTREE", "columns": [ "kategorie" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_kundengruppen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91553,7 +93701,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91608,7 +93756,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91652,7 +93800,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91663,7 +93811,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91672,14 +93820,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91688,7 +93839,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91710,7 +93861,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91721,7 +93872,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91732,7 +93883,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91743,7 +93894,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91765,7 +93916,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91776,7 +93927,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91785,23 +93936,28 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shopid", + "Index_type": "BTREE", "columns": [ "shopid", "typ", "parameter3", "parameter4" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_mapping", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91810,7 +93966,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91832,7 +93988,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91865,7 +94021,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91885,32 +94041,41 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop", + "Index_type": "BTREE", "columns": [ "shop" - ] + ], + "Non_unique": "" }, { "Key_name": "tabelle", + "Index_type": "BTREE", "columns": [ "tabelle" - ] + ], + "Non_unique": "" }, { "Key_name": "intid", + "Index_type": "BTREE", "columns": [ "intid" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_sprachen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -91919,7 +94084,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -91941,7 +94106,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91952,7 +94117,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -91996,7 +94161,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92007,7 +94172,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92016,14 +94181,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_status", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92032,7 +94200,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92043,7 +94211,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92054,7 +94222,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92065,7 +94233,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92076,7 +94244,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92087,7 +94255,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92096,14 +94264,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_subshop", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92112,7 +94283,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92123,7 +94294,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92134,7 +94305,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92145,7 +94316,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92156,7 +94327,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92189,7 +94360,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92200,7 +94371,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92209,14 +94380,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_versandarten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92225,7 +94399,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92236,7 +94410,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92247,7 +94421,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92258,7 +94432,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92280,7 +94454,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92302,7 +94476,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92324,7 +94498,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92335,7 +94509,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92355,14 +94529,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_voucher_cache", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92371,7 +94548,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92382,7 +94559,7 @@ "Collation": null, "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92413,20 +94590,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "voucher_id", + "Index_type": "BTREE", "columns": [ "voucher_id" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "shopexport_zahlungsstatus", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92435,7 +94617,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92457,7 +94639,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92468,7 +94650,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92488,26 +94670,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop", + "Index_type": "BTREE", "columns": [ "shop" - ] + ], + "Non_unique": "" }, { "Key_name": "auftrag", + "Index_type": "BTREE", "columns": [ "auftrag" - ] + ], + "Non_unique": "" } ] }, { "name": "shopexport_zahlweisen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92516,7 +94705,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92527,7 +94716,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92538,7 +94727,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92549,7 +94738,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92615,7 +94804,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92635,14 +94824,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimport_amazon_aufrufe", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92651,7 +94843,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92662,7 +94854,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92673,7 +94865,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92684,7 +94876,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92706,7 +94898,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92717,7 +94909,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92728,7 +94920,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92750,7 +94942,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92761,7 +94953,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92772,7 +94964,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92783,7 +94975,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92805,7 +94997,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92836,14 +95028,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimport_amazon_gotorders", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -92852,7 +95047,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -92863,7 +95058,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92874,7 +95069,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92885,7 +95080,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92896,7 +95091,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92907,7 +95102,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92918,7 +95113,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -92995,7 +95190,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93004,20 +95199,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "orderid", + "Index_type": "BTREE", "columns": [ "orderid" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimport_amazon_throttling", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93026,7 +95226,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -93037,7 +95237,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93048,7 +95248,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93059,7 +95259,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93070,7 +95270,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93081,7 +95281,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93092,7 +95292,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93103,7 +95303,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93114,7 +95314,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93125,7 +95325,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93136,7 +95336,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93147,7 +95347,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93158,7 +95358,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93169,7 +95369,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93191,7 +95391,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93211,20 +95411,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shopid", + "Index_type": "BTREE", "columns": [ "shopid" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimport_auftraege", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93233,7 +95438,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -93255,7 +95460,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93266,7 +95471,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93277,7 +95482,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93288,7 +95493,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93299,7 +95504,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93310,7 +95515,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93321,7 +95526,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93332,7 +95537,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93343,7 +95548,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93363,14 +95568,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimport_checkorder", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93379,7 +95587,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -93465,14 +95673,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_attachedoffers", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93481,7 +95692,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -93525,7 +95736,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93536,7 +95747,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93547,7 +95758,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93569,7 +95780,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93580,7 +95791,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93591,7 +95802,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93602,7 +95813,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93668,7 +95879,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93679,7 +95890,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93690,7 +95901,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93701,7 +95912,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93712,7 +95923,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93723,7 +95934,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93732,38 +95943,49 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id" - ] + ], + "Non_unique": "" }, { "Key_name": "article_id", + "Index_type": "BTREE", "columns": [ "article_id" - ] + ], + "Non_unique": "" }, { "Key_name": "sku", + "Index_type": "BTREE", "columns": [ "sku" - ] + ], + "Non_unique": "" }, { "Key_name": "asin", + "Index_type": "BTREE", "columns": [ "asin" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_browsetree", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93772,7 +95994,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -93783,7 +96005,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93794,7 +96016,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93816,7 +96038,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93827,7 +96049,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93838,7 +96060,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93849,7 +96071,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93871,7 +96093,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93913,26 +96135,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "browsenodeid", + "Index_type": "BTREE", "columns": [ "browsenodeid" - ] + ], + "Non_unique": "" }, { "Key_name": "parent_id", + "Index_type": "BTREE", "columns": [ "parent_id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_categorie", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -93941,7 +96170,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -93952,7 +96181,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93963,7 +96192,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93974,7 +96203,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93985,7 +96214,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -93996,7 +96225,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94007,7 +96236,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94018,7 +96247,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94027,26 +96256,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "name", + "Index_type": "BTREE", "columns": [ "name" - ] + ], + "Non_unique": "" }, { "Key_name": "node_de", + "Index_type": "BTREE", "columns": [ "node_de" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_creditnotes_adjustmentid", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94055,7 +96291,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94110,7 +96346,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94130,26 +96366,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id" - ] + ], + "Non_unique": "" }, { "Key_name": "creditnote_id", + "Index_type": "BTREE", "columns": [ "creditnote_id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_feedsubmission", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94158,7 +96401,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94180,7 +96423,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94191,7 +96434,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94202,7 +96445,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94213,7 +96456,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94224,7 +96467,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94235,7 +96478,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94246,7 +96489,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94257,7 +96500,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94266,21 +96509,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id", "feed_submission_id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_flatfile_article", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94289,7 +96537,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94333,7 +96581,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94344,7 +96592,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94355,7 +96603,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94366,7 +96614,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94377,7 +96625,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94397,20 +96645,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_flatfile_article_image", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94419,7 +96672,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94452,7 +96705,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94463,7 +96716,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94483,26 +96736,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shopimporter_amazon_flatfile_article_id", + "Index_type": "BTREE", "columns": [ "shopimporter_amazon_flatfile_article_id" - ] + ], + "Non_unique": "" }, { "Key_name": "file_id", + "Index_type": "BTREE", "columns": [ "file_id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_flatfile_article_value", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94511,7 +96771,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94533,7 +96793,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94544,7 +96804,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94553,20 +96813,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shopimporter_amazon_flatfile_article_id", + "Index_type": "BTREE", "columns": [ "shopimporter_amazon_flatfile_article_id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_flatfiledefinition", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94575,7 +96840,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94586,7 +96851,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94597,7 +96862,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94608,7 +96873,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94619,7 +96884,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94630,7 +96895,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94641,7 +96906,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94650,20 +96915,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "name", + "Index_type": "BTREE", "columns": [ "name" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "shopimporter_amazon_flatfilefields", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94672,7 +96942,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94682,8 +96952,8 @@ "Type": "varchar(255)", "Collation": "utf8mb3_general_ci", "Null": "NO", - "Key": "UNI", - "Default": "", + "Key": "MUL", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94692,20 +96962,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "fieldname", + "Index_type": "BTREE", "columns": [ "fieldname" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_invoice_address", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94714,7 +96989,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94736,7 +97011,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94747,7 +97022,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94758,7 +97033,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94769,7 +97044,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94780,7 +97055,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94791,7 +97066,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94802,7 +97077,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94813,7 +97088,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94824,7 +97099,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94835,7 +97110,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94846,7 +97121,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94855,20 +97130,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "orderid", + "Index_type": "BTREE", "columns": [ "orderid" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_invoice_upload", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -94877,7 +97157,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -94943,7 +97223,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94954,7 +97234,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94987,7 +97267,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -94998,7 +97278,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95009,7 +97289,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95020,7 +97300,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95031,7 +97311,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95042,7 +97322,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95075,7 +97355,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95095,26 +97375,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id" - ] + ], + "Non_unique": "" }, { "Key_name": "orderid", + "Index_type": "BTREE", "columns": [ "orderid" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_listing", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95123,7 +97410,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95145,7 +97432,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95156,7 +97443,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95167,7 +97454,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95178,7 +97465,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95189,7 +97476,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95211,7 +97498,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95222,7 +97509,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95233,7 +97520,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95244,7 +97531,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95255,7 +97542,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95266,7 +97553,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95277,7 +97564,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95288,7 +97575,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95299,7 +97586,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95310,7 +97597,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95321,7 +97608,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95332,7 +97619,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95343,7 +97630,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95354,7 +97641,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95365,7 +97652,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95376,7 +97663,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95387,7 +97674,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95398,7 +97685,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95409,7 +97696,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95420,7 +97707,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95431,7 +97718,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95442,7 +97729,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95453,7 +97740,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95464,7 +97751,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95475,7 +97762,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95486,7 +97773,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95497,7 +97784,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95508,7 +97795,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95519,7 +97806,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95530,7 +97817,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95541,7 +97828,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95552,7 +97839,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95563,7 +97850,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95574,7 +97861,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95585,7 +97872,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95596,7 +97883,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95607,7 +97894,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95618,7 +97905,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95629,7 +97916,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95651,7 +97938,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95671,26 +97958,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "article_id", + "Index_type": "BTREE", "columns": [ "article_id" - ] + ], + "Non_unique": "" }, { "Key_name": "seller_sku", + "Index_type": "BTREE", "columns": [ "seller_sku" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_merchantgroup", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95699,7 +97993,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95721,7 +98015,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95741,20 +98035,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_order_status", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95763,7 +98062,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95785,7 +98084,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95796,7 +98095,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95816,22 +98115,27 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id", "orderid", "status" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "shopimporter_amazon_orderadjustment", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95840,7 +98144,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95873,7 +98177,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95884,7 +98188,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -95904,26 +98208,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id" - ] + ], + "Non_unique": "" }, { "Key_name": "status", + "Index_type": "BTREE", "columns": [ "status" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_orderinfo", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -95932,7 +98243,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -95954,7 +98265,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96007,20 +98318,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "orderid", + "Index_type": "BTREE", "columns": [ "orderid" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_recommendation", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96029,7 +98345,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96051,7 +98367,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96062,7 +98378,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96073,7 +98389,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96084,7 +98400,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96095,7 +98411,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96106,7 +98422,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96117,7 +98433,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96128,7 +98444,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96148,26 +98464,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id" - ] + ], + "Non_unique": "" }, { "Key_name": "recommendationid", + "Index_type": "BTREE", "columns": [ "recommendationid" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_report_scheduler", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96176,7 +98499,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96198,7 +98521,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96220,7 +98543,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96231,7 +98554,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96242,7 +98565,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96253,7 +98576,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96264,7 +98587,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96284,22 +98607,27 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id", "report_type", "marketplace_request" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "shopimporter_amazon_requestinfo", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96308,7 +98636,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96330,7 +98658,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96341,7 +98669,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96352,7 +98680,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96363,7 +98691,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96374,7 +98702,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96396,7 +98724,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96416,33 +98744,42 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id", "type" - ] + ], + "Non_unique": "" }, { "Key_name": "shopimporter_amazon_aufrufe_id", + "Index_type": "BTREE", "columns": [ "shopimporter_amazon_aufrufe_id" - ] + ], + "Non_unique": "" }, { "Key_name": "status", + "Index_type": "BTREE", "columns": [ "status" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_service_status", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96451,7 +98788,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96473,7 +98810,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96493,26 +98830,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id" - ] + ], + "Non_unique": "" }, { "Key_name": "updated_at", + "Index_type": "BTREE", "columns": [ "updated_at" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_small_and_light", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96521,7 +98865,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96543,7 +98887,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96554,7 +98898,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96565,7 +98909,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96576,7 +98920,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96587,7 +98931,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96598,7 +98942,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96609,7 +98953,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96620,7 +98964,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96631,7 +98975,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96642,7 +98986,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96653,7 +98997,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96662,20 +99006,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_token", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96684,7 +99033,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96706,7 +99055,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96717,7 +99066,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96737,21 +99086,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id", "type" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_amazon_xsd_enumerations", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96760,7 +99114,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96771,7 +99125,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96782,7 +99136,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96793,7 +99147,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96804,7 +99158,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96815,7 +99169,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96826,7 +99180,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96837,7 +99191,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96857,26 +99211,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "enumeration_type", + "Index_type": "BTREE", "columns": [ "enumeration_type" - ] + ], + "Non_unique": "" }, { "Key_name": "element_name", + "Index_type": "BTREE", "columns": [ "element_name" - ] + ], + "Non_unique": "" } ] }, { "name": "shopimporter_shopify_auftraege", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96885,7 +99246,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -96907,7 +99268,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96929,7 +99290,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96951,7 +99312,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96962,7 +99323,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -96971,26 +99332,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop", + "Index_type": "BTREE", "columns": [ "shop" - ] + ], + "Non_unique": "" }, { "Key_name": "extid", + "Index_type": "BTREE", "columns": [ "extid" - ] + ], + "Non_unique": "" } ] }, { "name": "shopnavigation", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -96999,7 +99367,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97010,7 +99378,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97021,7 +99389,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97032,7 +99400,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97043,7 +99411,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97054,7 +99422,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97065,7 +99433,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97076,7 +99444,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97087,7 +99455,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97096,14 +99464,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "singleshipment_order", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97112,7 +99483,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97123,7 +99494,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97134,7 +99505,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97145,7 +99516,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97156,7 +99527,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97167,7 +99538,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97178,7 +99549,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97187,14 +99558,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "snapaddy_address", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97203,7 +99577,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97214,7 +99588,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97225,7 +99599,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97236,7 +99610,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97247,7 +99621,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97258,7 +99632,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97269,7 +99643,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97280,7 +99654,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97291,7 +99665,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97302,7 +99676,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97324,7 +99698,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97335,7 +99709,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97346,7 +99720,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97355,20 +99729,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "snap_hash", + "Index_type": "BTREE", "columns": [ "snap_hash" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "snapaddy_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97377,7 +99756,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97388,7 +99767,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97399,7 +99778,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97419,14 +99798,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "sprachen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97435,7 +99817,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97446,7 +99828,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97457,7 +99839,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97468,7 +99850,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97479,7 +99861,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97499,14 +99881,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "spryker_data", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97515,7 +99900,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97526,7 +99911,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97548,7 +99933,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97559,7 +99944,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97579,20 +99964,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id" - ] + ], + "Non_unique": "" } ] }, { "name": "spryker_online_number", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97601,7 +99991,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97612,7 +100002,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97623,7 +100013,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97634,7 +100024,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97643,26 +100033,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "order_reference", + "Index_type": "BTREE", "columns": [ "order_reference" - ] + ], + "Non_unique": "" }, { "Key_name": "order_shipment", + "Index_type": "BTREE", "columns": [ "order_shipment" - ] + ], + "Non_unique": "" } ] }, { "name": "spryker_order_reference", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97671,7 +100068,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97682,7 +100079,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97693,7 +100090,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97704,7 +100101,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97715,7 +100112,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97735,20 +100132,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "shop_id", + "Index_type": "BTREE", "columns": [ "shop_id" - ] + ], + "Non_unique": "" } ] }, { "name": "sqlcache", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97757,7 +100159,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97768,7 +100170,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97779,7 +100181,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97790,7 +100192,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97821,14 +100223,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "standardpackage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97837,7 +100242,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97848,7 +100253,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97859,7 +100264,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97925,7 +100330,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -97934,14 +100339,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "stechuhr", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -97950,7 +100358,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -97961,7 +100369,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98016,7 +100424,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98036,20 +100444,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "datum", + "Index_type": "BTREE", "columns": [ "datum" - ] + ], + "Non_unique": "" } ] }, { "name": "stechuhrdevice", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98058,7 +100471,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98069,7 +100482,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98133,14 +100546,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "steuersaetze", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98149,7 +100565,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98160,7 +100576,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98193,7 +100609,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98226,7 +100642,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98237,7 +100653,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98248,7 +100664,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98259,7 +100675,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98279,14 +100695,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "stock_replenishment_list", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98295,7 +100714,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98403,21 +100822,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "article_id", + "Index_type": "BTREE", "columns": [ "article_id", "is_replenishment" - ] + ], + "Non_unique": "" } ] }, { "name": "stueckliste", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98426,7 +100850,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98437,7 +100861,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98448,7 +100872,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98459,7 +100883,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98470,7 +100894,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98481,7 +100905,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98492,7 +100916,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98514,7 +100938,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98525,7 +100949,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98536,7 +100960,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98558,7 +100982,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98569,7 +100993,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98580,7 +101004,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98591,7 +101015,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98600,20 +101024,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "stuecklistevonartikel", + "Index_type": "BTREE", "columns": [ "stuecklistevonartikel" - ] + ], + "Non_unique": "" } ] }, { "name": "stundensatz", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98622,7 +101051,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98633,7 +101062,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98644,7 +101073,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98655,7 +101084,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98666,7 +101095,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98677,7 +101106,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98686,14 +101115,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "subscription_cycle_job", + "collation": "utf8mb4_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98702,7 +101134,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98713,7 +101145,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98724,7 +101156,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98735,7 +101167,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98743,10 +101175,10 @@ { "Field": "printer_id", "Type": "int(11)", - "Collation": "", + "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98754,7 +101186,7 @@ { "Field": "created_at", "Type": "timestamp", - "Collation": "", + "Collation": null, "Null": "NO", "Key": "", "Default": "current_timestamp()", @@ -98766,20 +101198,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "address", + "Index_type": "BTREE", "columns": [ "address_id" - ] + ], + "Non_unique": "" } ] }, { "name": "supersearch_index_group", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98788,7 +101225,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98799,7 +101236,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98810,7 +101247,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98821,7 +101258,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98843,7 +101280,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98854,7 +101291,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98863,20 +101300,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "name", + "Index_type": "BTREE", "columns": [ "name" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "supersearch_index_item", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -98885,7 +101327,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -98896,7 +101338,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98907,7 +101349,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98929,7 +101371,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98940,7 +101382,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98951,7 +101393,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98962,7 +101404,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -98973,7 +101415,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99006,7 +101448,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99015,33 +101457,42 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "index_identifier", + "Index_type": "BTREE", "columns": [ "index_name", "index_id" - ] + ], + "Non_unique": "UNIQUE" }, { "Key_name": "project_id", + "Index_type": "BTREE", "columns": [ "project_id" - ] + ], + "Non_unique": "" }, { "Key_name": "FullText", + "Index_type": "FULLTEXT", "columns": [ "search_words" - ] + ], + "Non_unique": "" } ] }, { "name": "supportapp", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99050,7 +101501,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99083,7 +101534,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99105,7 +101556,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99116,7 +101567,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99127,7 +101578,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99138,7 +101589,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99158,14 +101609,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "supportapp_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99174,7 +101628,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99205,14 +101659,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "supportapp_auftrag_check", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99221,7 +101678,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99232,7 +101689,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99243,7 +101700,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99254,7 +101711,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99265,7 +101722,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99285,14 +101742,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "supportapp_gruppen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99301,7 +101761,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99312,7 +101772,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99323,7 +101783,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99343,14 +101803,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "supportapp_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99359,7 +101822,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99392,7 +101855,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99403,7 +101866,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99412,14 +101875,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "supportapp_schritte", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99428,7 +101894,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99461,7 +101927,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99514,14 +101980,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "supportapp_vorlagen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99530,7 +101999,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99541,7 +102010,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99552,7 +102021,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99563,7 +102032,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99572,14 +102041,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "survey", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99588,7 +102060,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99599,7 +102071,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99632,7 +102104,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99643,7 +102115,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99652,14 +102124,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "survey_user", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99668,7 +102143,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99701,7 +102176,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99721,26 +102196,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "survey_id", + "Index_type": "BTREE", "columns": [ "survey_id" - ] + ], + "Non_unique": "" }, { "Key_name": "user_id", + "Index_type": "BTREE", "columns": [ "user_id" - ] + ], + "Non_unique": "" } ] }, { "name": "system_disk_free", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99749,7 +102231,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99760,7 +102242,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99771,7 +102253,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99782,7 +102264,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99793,7 +102275,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99813,20 +102295,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "created_at", + "Index_type": "BTREE", "columns": [ "created_at" - ] + ], + "Non_unique": "" } ] }, { "name": "systemhealth", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99835,7 +102322,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99857,7 +102344,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99868,7 +102355,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99879,7 +102366,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99890,7 +102377,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99912,7 +102399,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99934,7 +102421,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99943,26 +102430,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "systemhealth_category_id", + "Index_type": "BTREE", "columns": [ "systemhealth_category_id" - ] + ], + "Non_unique": "" }, { "Key_name": "name", + "Index_type": "BTREE", "columns": [ "name" - ] + ], + "Non_unique": "" } ] }, { "name": "systemhealth_category", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -99971,7 +102465,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -99982,7 +102476,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -99993,7 +102487,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100013,20 +102507,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "name", + "Index_type": "BTREE", "columns": [ "name" - ] + ], + "Non_unique": "" } ] }, { "name": "systemhealth_custom_error_lvl", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100035,7 +102534,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100057,7 +102556,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100066,20 +102565,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "systemhealth_id", + "Index_type": "BTREE", "columns": [ "systemhealth_id" - ] + ], + "Non_unique": "" } ] }, { "name": "systemhealth_event", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100088,7 +102592,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100121,7 +102625,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100143,7 +102647,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100154,7 +102658,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100163,26 +102667,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "systemhealth_id", + "Index_type": "BTREE", "columns": [ "systemhealth_id" - ] + ], + "Non_unique": "" }, { "Key_name": "created_at", + "Index_type": "BTREE", "columns": [ "created_at" - ] + ], + "Non_unique": "" } ] }, { "name": "systemhealth_notification", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100191,7 +102702,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100202,7 +102713,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100213,7 +102724,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100222,14 +102733,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "systemhealth_notification_item", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100238,7 +102752,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100271,7 +102785,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100282,7 +102796,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100291,14 +102805,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "systemlog", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100307,7 +102824,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100318,7 +102835,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100329,7 +102846,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100340,7 +102857,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100351,7 +102868,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100362,7 +102879,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100373,7 +102890,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100384,7 +102901,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100406,7 +102923,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100426,14 +102943,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "systemtemplates", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100442,7 +102962,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100453,7 +102973,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100464,7 +102984,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100475,7 +102995,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100486,7 +103006,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100497,7 +103017,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100528,21 +103048,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "system_pkey", + "Index_type": "BTREE", "columns": [ "id", "hidden" - ] + ], + "Non_unique": "" } ] }, { "name": "task_subscription", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100551,7 +103076,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100562,7 +103087,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100573,7 +103098,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100582,20 +103107,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "task_id", + "Index_type": "BTREE", "columns": [ "task_id" - ] + ], + "Non_unique": "" } ] }, { "name": "task_timeline", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100604,7 +103134,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100615,7 +103145,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100626,7 +103156,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100648,7 +103178,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100657,20 +103187,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "task_id", + "Index_type": "BTREE", "columns": [ "task_id" - ] + ], + "Non_unique": "" } ] }, { "name": "teilprojekt_geplante_zeiten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100679,7 +103214,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100723,7 +103258,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100754,14 +103289,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "telefonrueckruf", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100770,7 +103308,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100781,7 +103319,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100792,7 +103330,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100814,7 +103352,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100825,7 +103363,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100869,7 +103407,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100880,7 +103418,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100900,20 +103438,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "rueckrufvon", + "Index_type": "BTREE", "columns": [ "rueckrufvon" - ] + ], + "Non_unique": "" } ] }, { "name": "telefonrueckruf_versuche", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -100922,7 +103465,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -100944,7 +103487,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100955,7 +103498,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100977,7 +103520,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -100986,20 +103529,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "telefonrueckruf", + "Index_type": "BTREE", "columns": [ "telefonrueckruf" - ] + ], + "Non_unique": "" } ] }, { "name": "templatemessage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101008,7 +103556,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101030,7 +103578,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101050,20 +103598,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "user", + "Index_type": "BTREE", "columns": [ "user" - ] + ], + "Non_unique": "" } ] }, { "name": "textvorlagen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101072,7 +103625,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101083,7 +103636,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101094,7 +103647,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101105,7 +103658,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101116,7 +103669,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101125,14 +103678,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ticket", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101141,7 +103697,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101152,7 +103708,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101174,7 +103730,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101185,7 +103741,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101196,7 +103752,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101207,7 +103763,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101218,7 +103774,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101229,7 +103785,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101240,7 +103796,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101251,7 +103807,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101262,7 +103818,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101273,7 +103829,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101284,7 +103840,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101295,7 +103851,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101306,7 +103862,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101317,7 +103873,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101328,7 +103884,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101361,7 +103917,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101394,7 +103950,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101405,7 +103961,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101414,38 +103970,49 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "schluessel", + "Index_type": "BTREE", "columns": [ "schluessel" - ] + ], + "Non_unique": "" }, { "Key_name": "service", + "Index_type": "BTREE", "columns": [ "service" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" }, { "Key_name": "warteschlange", + "Index_type": "BTREE", "columns": [ "warteschlange" - ] + ], + "Non_unique": "" } ] }, { "name": "ticket_category", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101454,7 +104021,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101465,7 +104032,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101507,14 +104074,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ticket_header", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101523,7 +104093,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101534,7 +104104,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101545,7 +104115,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101556,7 +104126,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101565,14 +104135,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ticket_nachricht", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101581,7 +104154,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101592,7 +104165,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101603,7 +104176,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101614,7 +104187,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101625,7 +104198,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101636,7 +104209,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101647,7 +104220,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101658,7 +104231,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101669,7 +104242,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101680,7 +104253,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101691,7 +104264,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101702,7 +104275,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101713,7 +104286,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101724,7 +104297,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101735,7 +104308,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101746,7 +104319,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101757,7 +104330,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101766,15 +104339,19 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "ticket", + "Index_type": "BTREE", "columns": [ "ticket" - ] + ], + "Non_unique": "" }, { "Key_name": "FullText", @@ -101783,12 +104360,14 @@ "betreff", "verfasser", "text" - ] + ], + "Non_unique": "" } ] }, { "name": "ticket_regeln", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101797,7 +104376,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101808,7 +104387,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101819,7 +104398,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101830,7 +104409,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101841,7 +104420,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101896,7 +104475,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101916,14 +104495,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ticket_vorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -101932,7 +104514,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -101943,7 +104525,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101954,7 +104536,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101965,7 +104547,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101976,7 +104558,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -101987,7 +104569,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102018,20 +104600,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "ticket_category_id", + "Index_type": "BTREE", "columns": [ "ticket_category_id" - ] + ], + "Non_unique": "" } ] }, { "name": "transfer_account_label", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102040,7 +104627,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -102062,7 +104649,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102071,14 +104658,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "transfer_sellingreport_job", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102087,7 +104677,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -102109,7 +104699,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102120,7 +104710,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102151,14 +104741,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "uebersetzung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102167,7 +104760,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -102178,7 +104771,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102189,7 +104782,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102200,7 +104793,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102211,7 +104804,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102220,26 +104813,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "sprache", + "Index_type": "BTREE", "columns": [ "sprache" - ] + ], + "Non_unique": "" }, { "Key_name": "label", + "Index_type": "BTREE", "columns": [ "label" - ] + ], + "Non_unique": "" } ] }, { "name": "uebertragungen_account", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -102248,7 +104848,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -102259,7 +104859,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102270,7 +104870,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102303,7 +104903,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102314,7 +104914,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102325,7 +104925,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102336,7 +104936,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102347,7 +104947,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102358,7 +104958,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102369,7 +104969,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102380,7 +104980,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102391,7 +104991,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102402,7 +105002,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102413,7 +105013,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102424,7 +105024,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102435,7 +105035,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102479,7 +105079,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102512,7 +105112,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102556,7 +105156,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102567,7 +105167,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102578,7 +105178,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102633,7 +105233,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102655,7 +105255,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102743,7 +105343,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102754,7 +105354,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102765,7 +105365,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102776,7 +105376,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102787,7 +105387,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102798,7 +105398,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102809,7 +105409,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102842,7 +105442,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102853,7 +105453,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102864,7 +105464,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102875,7 +105475,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -102886,7 +105486,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103051,7 +105651,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103062,7 +105662,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103128,7 +105728,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103172,7 +105772,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103249,7 +105849,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103258,14 +105858,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "uebertragungen_account_oauth", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103274,7 +105877,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103285,7 +105888,7 @@ "Collation": null, "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103296,7 +105899,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103307,7 +105910,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103318,7 +105921,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103329,7 +105932,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103340,7 +105943,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103349,20 +105952,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "uebertragungen_account_id", + "Index_type": "BTREE", "columns": [ "uebertragungen_account_id" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "uebertragungen_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103371,7 +105979,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103404,7 +106012,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103415,7 +106023,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103435,21 +106043,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "uebertragungen_account", + "Index_type": "BTREE", "columns": [ "uebertragungen_account", "artikel" - ] + ], + "Non_unique": "" } ] }, { "name": "uebertragungen_dateien", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103458,7 +106071,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103480,7 +106093,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103491,7 +106104,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103502,7 +106115,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103566,21 +106179,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "uebertragung_account", + "Index_type": "BTREE", "columns": [ "uebertragung_account", "datei" - ] + ], + "Non_unique": "" } ] }, { "name": "uebertragungen_event", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103589,7 +106207,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103611,7 +106229,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103622,7 +106240,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103633,7 +106251,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103644,7 +106262,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103677,7 +106295,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103686,20 +106304,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "uebertragung_account", + "Index_type": "BTREE", "columns": [ "uebertragung_account" - ] + ], + "Non_unique": "" } ] }, { "name": "uebertragungen_event_einstellungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103708,7 +106331,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103730,7 +106353,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103761,21 +106384,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "uebertragung_account", + "Index_type": "BTREE", "columns": [ "uebertragung_account", "eventname" - ] + ], + "Non_unique": "" } ] }, { "name": "uebertragungen_fileconvert_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103784,7 +106412,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103806,7 +106434,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103817,7 +106445,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103828,7 +106456,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103839,7 +106467,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103850,7 +106478,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103861,7 +106489,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103881,14 +106509,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "uebertragungen_lagercache", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103897,7 +106528,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103908,7 +106539,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103919,7 +106550,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103941,7 +106572,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103950,14 +106581,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "uebertragungen_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -103966,7 +106600,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -103988,7 +106622,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -103999,7 +106633,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104010,7 +106644,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104021,7 +106655,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104032,7 +106666,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104043,7 +106677,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104063,20 +106697,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "uebertragungen_account", + "Index_type": "BTREE", "columns": [ "uebertragungen_account" - ] + ], + "Non_unique": "" } ] }, { "name": "uebertragungen_monitor", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104085,7 +106724,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104129,7 +106768,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104140,7 +106779,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104151,7 +106790,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104162,7 +106801,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104173,7 +106812,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104195,7 +106834,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104226,23 +106865,28 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "uebertragungen_account", + "Index_type": "BTREE", "columns": [ "uebertragungen_account", "datei", "api_request", "doctypeid" - ] + ], + "Non_unique": "" } ] }, { "name": "uebertragungen_trackingnummern", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104251,7 +106895,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104262,7 +106906,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104273,7 +106917,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104282,14 +106926,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "umsatzstatistik", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104298,7 +106945,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104331,7 +106978,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104342,7 +106989,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104353,7 +107000,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104364,7 +107011,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104430,7 +107077,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104441,7 +107088,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104472,14 +107119,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "unterprojekt", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104488,7 +107138,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104499,7 +107149,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104510,7 +107160,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104521,7 +107171,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104532,7 +107182,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104543,7 +107193,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104563,14 +107213,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ups", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104579,7 +107232,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104601,7 +107254,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104612,7 +107265,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104643,14 +107296,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "user", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -104659,7 +107315,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -104670,7 +107326,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104678,10 +107334,10 @@ { "Field": "password", "Type": "varchar(255)", - "Collation": "utf8mb3_bin", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104692,7 +107348,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104703,7 +107359,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104714,7 +107370,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104725,7 +107381,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104747,7 +107403,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104758,7 +107414,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104769,7 +107425,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104780,7 +107436,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104791,7 +107447,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104813,7 +107469,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104824,7 +107480,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104835,7 +107491,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104846,7 +107502,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104857,7 +107513,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104868,7 +107524,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104879,7 +107535,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104890,7 +107546,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104934,7 +107590,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104945,7 +107601,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104956,7 +107612,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104978,7 +107634,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -104989,7 +107645,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105022,7 +107678,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105033,7 +107689,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105055,7 +107711,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105066,7 +107722,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105088,7 +107744,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105099,7 +107755,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105110,7 +107766,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105132,7 +107788,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105143,7 +107799,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105165,7 +107821,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105187,7 +107843,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105198,7 +107854,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105207,20 +107863,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "user_totp", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105229,7 +107890,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -105240,7 +107901,7 @@ "Collation": null, "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105262,7 +107923,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105293,20 +107954,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "user_id", + "Index_type": "BTREE", "columns": [ "user_id" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "userkonfiguration", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105315,7 +107981,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -105337,7 +108003,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105348,7 +108014,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105357,26 +108023,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "user", + "Index_type": "BTREE", "columns": [ "user" - ] + ], + "Non_unique": "" }, { "Key_name": "name", + "Index_type": "BTREE", "columns": [ "name" - ] + ], + "Non_unique": "" } ] }, { "name": "useronline", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105407,7 +108080,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105418,7 +108091,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105449,14 +108122,17 @@ "keys": [ { "Key_name": "sessionid", + "Index_type": "BTREE", "columns": [ "sessionid" - ] + ], + "Non_unique": "" } ] }, { "name": "userrights", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105465,7 +108141,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -105476,7 +108152,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105487,7 +108163,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105498,7 +108174,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105509,7 +108185,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105518,20 +108194,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "user", + "Index_type": "BTREE", "columns": [ "user" - ] + ], + "Non_unique": "" } ] }, { "name": "uservorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105540,7 +108221,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -105551,7 +108232,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105562,7 +108243,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105571,14 +108252,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "uservorlagerights", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105587,7 +108271,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -105598,7 +108282,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105609,7 +108293,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105620,7 +108304,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105631,7 +108315,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105640,14 +108324,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ustprf", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105656,7 +108343,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -105667,7 +108354,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105678,7 +108365,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105689,7 +108376,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105700,7 +108387,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105711,7 +108398,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105722,7 +108409,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105733,7 +108420,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105744,7 +108431,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105755,7 +108442,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105766,7 +108453,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105777,7 +108464,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105788,7 +108475,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105799,7 +108486,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105821,7 +108508,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105830,14 +108517,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "ustprf_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105846,7 +108536,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -105857,7 +108547,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105868,7 +108558,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105879,7 +108569,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105890,7 +108580,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105901,7 +108591,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105912,7 +108602,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105921,14 +108611,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "verbindlichkeit", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -105937,7 +108630,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -105948,7 +108641,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105959,7 +108652,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105981,7 +108674,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -105992,7 +108685,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106003,7 +108696,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106014,7 +108707,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106025,7 +108718,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106036,7 +108729,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106047,7 +108740,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106058,7 +108751,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106069,7 +108762,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106080,7 +108773,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106091,7 +108784,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106102,7 +108795,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106113,7 +108806,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106135,7 +108828,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106146,7 +108839,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106157,7 +108850,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106168,7 +108861,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106179,7 +108872,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106190,7 +108883,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106201,7 +108894,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106212,7 +108905,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106223,7 +108916,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106234,7 +108927,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106245,7 +108938,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106289,7 +108982,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106311,7 +109004,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106322,7 +109015,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106355,7 +109048,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106366,7 +109059,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106377,7 +109070,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106421,7 +109114,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106432,7 +109125,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106443,7 +109136,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106487,7 +109180,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106498,7 +109191,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106509,7 +109202,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106553,7 +109246,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106564,7 +109257,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106575,7 +109268,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106619,7 +109312,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106630,7 +109323,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106641,7 +109334,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106685,7 +109378,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106696,7 +109389,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106707,7 +109400,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106751,7 +109444,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106762,7 +109455,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106773,7 +109466,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106817,7 +109510,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106828,7 +109521,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106839,7 +109532,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106883,7 +109576,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106894,7 +109587,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106905,7 +109598,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106949,7 +109642,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106960,7 +109653,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -106971,7 +109664,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107015,7 +109708,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107037,7 +109730,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107048,7 +109741,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107081,7 +109774,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107092,7 +109785,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107103,7 +109796,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107147,7 +109840,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107158,7 +109851,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107169,7 +109862,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107213,7 +109906,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107224,7 +109917,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107235,7 +109928,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107257,7 +109950,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107268,7 +109961,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107279,7 +109972,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107290,7 +109983,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107301,7 +109994,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107323,7 +110016,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107334,7 +110027,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107356,7 +110049,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107367,7 +110060,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107389,7 +110082,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107400,7 +110093,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107422,7 +110115,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107433,7 +110126,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107455,7 +110148,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107477,7 +110170,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107488,7 +110181,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107499,7 +110192,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107510,7 +110203,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107521,7 +110214,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107554,7 +110247,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107565,7 +110258,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107576,7 +110269,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107587,7 +110280,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107598,7 +110291,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107620,7 +110313,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107642,7 +110335,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107675,7 +110368,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107684,26 +110377,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" }, { "Key_name": "bestellung", + "Index_type": "BTREE", "columns": [ "bestellung" - ] + ], + "Non_unique": "" } ] }, { "name": "verbindlichkeit_bestellungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107712,7 +110412,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -107811,7 +110511,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107820,20 +110520,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "verbindlichkeit", + "Index_type": "BTREE", "columns": [ "verbindlichkeit" - ] + ], + "Non_unique": "" } ] }, { "name": "verbindlichkeit_kontierung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107842,7 +110547,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -107875,7 +110580,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107886,7 +110591,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107897,7 +110602,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107908,7 +110613,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107919,7 +110624,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107930,7 +110635,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107939,20 +110644,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "verbindlichkeit", + "Index_type": "BTREE", "columns": [ "verbindlichkeit" - ] + ], + "Non_unique": "" } ] }, { "name": "verbindlichkeit_ocr", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -107961,7 +110671,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -107983,7 +110693,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -107994,7 +110704,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108014,14 +110724,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "verbindlichkeit_position", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108030,7 +110743,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -108096,7 +110809,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108107,7 +110820,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108118,7 +110831,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108129,7 +110842,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108140,7 +110853,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108151,7 +110864,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108162,7 +110875,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108173,7 +110886,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108184,7 +110897,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108195,7 +110908,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108206,7 +110919,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108217,7 +110930,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108228,7 +110941,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108259,20 +110972,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "verbindlichkeit", + "Index_type": "BTREE", "columns": [ "verbindlichkeit" - ] + ], + "Non_unique": "" } ] }, { "name": "verbindlichkeit_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108281,7 +110999,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -108303,7 +111021,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108314,7 +111032,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108325,7 +111043,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108334,20 +111052,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "verbindlichkeit", + "Index_type": "BTREE", "columns": [ "verbindlichkeit" - ] + ], + "Non_unique": "" } ] }, { "name": "verbindlichkeit_regelmaessig", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108356,7 +111079,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -108367,7 +111090,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108400,7 +111123,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108411,7 +111134,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108422,7 +111145,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108433,7 +111156,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108444,7 +111167,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108455,7 +111178,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108466,7 +111189,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108477,7 +111200,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108488,7 +111211,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108499,7 +111222,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108510,7 +111233,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108521,7 +111244,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108532,7 +111255,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108543,7 +111266,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108552,14 +111275,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "verbindlichkeit_regelmaessig_beleg", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108568,7 +111294,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -108601,7 +111327,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108610,20 +111336,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "verbindlichkeit_regelmaessig", + "Index_type": "BTREE", "columns": [ "verbindlichkeit_regelmaessig" - ] + ], + "Non_unique": "" } ] }, { "name": "verkaufspreise", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108632,7 +111363,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -108643,7 +111374,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108654,7 +111385,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108665,7 +111396,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108676,7 +111407,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108698,7 +111429,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108742,7 +111473,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108753,7 +111484,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108764,7 +111495,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108775,7 +111506,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108797,7 +111528,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108808,7 +111539,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108819,7 +111550,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108841,7 +111572,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108907,7 +111638,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -108916,38 +111647,49 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "artikel", + "Index_type": "BTREE", "columns": [ "artikel" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" }, { "Key_name": "projekt", + "Index_type": "BTREE", "columns": [ "projekt" - ] + ], + "Non_unique": "" }, { "Key_name": "kundenartikelnummer", + "Index_type": "BTREE", "columns": [ "kundenartikelnummer" - ] + ], + "Non_unique": "" } ] }, { "name": "verkaufszahlen_chart", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -108956,7 +111698,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109000,7 +111742,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109011,7 +111753,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109042,14 +111784,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "verkaufszahlen_chart_projekt", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -109058,7 +111803,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109100,21 +111845,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "chart", + "Index_type": "BTREE", "columns": [ "chart", "projekt" - ] + ], + "Non_unique": "" } ] }, { "name": "verrechnungsart", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -109123,7 +111873,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109134,7 +111884,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109145,7 +111895,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109156,7 +111906,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109165,14 +111915,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "versand", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -109181,7 +111934,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109192,7 +111945,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109203,7 +111956,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109214,7 +111967,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109225,7 +111978,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109236,7 +111989,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109247,7 +112000,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109258,7 +112011,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109269,7 +112022,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109280,7 +112033,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109291,7 +112044,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109302,7 +112055,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109313,7 +112066,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109324,7 +112077,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109335,7 +112088,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109346,7 +112099,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109357,7 +112110,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109368,7 +112121,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109379,7 +112132,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109522,7 +112275,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109566,7 +112319,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109577,7 +112330,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109586,32 +112339,41 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "lieferschein", + "Index_type": "BTREE", "columns": [ "lieferschein" - ] + ], + "Non_unique": "" }, { "Key_name": "projekt", + "Index_type": "BTREE", "columns": [ "projekt" - ] + ], + "Non_unique": "" }, { "Key_name": "cronjob", + "Index_type": "BTREE", "columns": [ "cronjob" - ] + ], + "Non_unique": "" } ] }, { "name": "versandarten", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -109620,7 +112382,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109631,7 +112393,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109642,7 +112404,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109686,7 +112448,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109730,7 +112492,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109772,14 +112534,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "versandpakete", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -109788,7 +112553,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109821,7 +112586,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109832,7 +112597,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109843,7 +112608,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109854,7 +112619,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109863,14 +112628,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "versandzentrum_log", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -109879,7 +112647,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -109890,7 +112658,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109901,7 +112669,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109912,7 +112680,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109923,7 +112691,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -109943,14 +112711,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "vertreterumsatz", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -109959,7 +112730,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110003,7 +112774,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110014,7 +112785,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110025,7 +112796,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110091,7 +112862,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110102,7 +112873,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "'eur'", + "Default": "'EUR'", "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110155,14 +112926,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "vorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110171,7 +112945,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110182,7 +112956,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110204,7 +112978,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110215,7 +112989,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110235,14 +113009,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "waage_artikel", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110251,7 +113028,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110284,7 +113061,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110339,7 +113116,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110348,14 +113125,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "waehrung_umrechnung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110364,7 +113144,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110375,7 +113155,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110386,7 +113166,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110408,7 +113188,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110430,7 +113210,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110441,7 +113221,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110450,14 +113230,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "warteschlangen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110466,7 +113249,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110477,7 +113260,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110488,7 +113271,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110499,7 +113282,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110510,7 +113293,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110519,20 +113302,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "wawision_uebersetzung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110541,7 +113329,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110563,7 +113351,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110574,7 +113362,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110585,7 +113373,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110596,7 +113384,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110607,7 +113395,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110618,7 +113406,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110627,21 +113415,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "user", + "Index_type": "BTREE", "columns": [ "user", "sprache" - ] + ], + "Non_unique": "" } ] }, { "name": "webmail", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110650,7 +113443,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110661,7 +113454,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110672,7 +113465,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110683,7 +113476,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110694,7 +113487,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110703,14 +113496,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "webmail_mails", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110719,7 +113515,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110730,7 +113526,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110738,10 +113534,10 @@ { "Field": "subject", "Type": "varchar(255)", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110749,10 +113545,10 @@ { "Field": "sender", "Type": "varchar(255)", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110760,10 +113556,10 @@ { "Field": "cc", "Type": "varchar(255)", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110771,10 +113567,10 @@ { "Field": "bcc", "Type": "varchar(255)", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110782,10 +113578,10 @@ { "Field": "replyto", "Type": "varchar(255)", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110793,10 +113589,10 @@ { "Field": "plaintext", "Type": "text", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110804,10 +113600,10 @@ { "Field": "htmltext", "Type": "text", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110818,7 +113614,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110829,7 +113625,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110840,7 +113636,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110851,7 +113647,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110860,14 +113656,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "webmail_zuordnungen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110876,7 +113675,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110887,7 +113686,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110898,7 +113697,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110909,7 +113708,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110918,14 +113717,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "wiedervorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -110934,7 +113736,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -110978,7 +113780,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -110989,7 +113791,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111000,7 +113802,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111011,7 +113813,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111022,7 +113824,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111033,7 +113835,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111044,7 +113846,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111055,7 +113857,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111066,7 +113868,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111077,7 +113879,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111088,7 +113890,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111121,7 +113923,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111132,7 +113934,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111143,7 +113945,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111154,7 +113956,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111220,7 +114022,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111231,7 +114033,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111242,7 +114044,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111284,26 +114086,33 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse_mitarbeiter", + "Index_type": "BTREE", "columns": [ "adresse_mitarbeiter" - ] + ], + "Non_unique": "" } ] }, { "name": "wiedervorlage_aufgabe", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111312,7 +114121,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111323,7 +114132,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111334,7 +114143,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111354,21 +114163,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "resubmission_task", + "Index_type": "BTREE", "columns": [ "resubmission_id", "task_id" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "wiedervorlage_aufgabe_vorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111377,7 +114191,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111443,7 +114257,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111465,7 +114279,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111476,7 +114290,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111487,7 +114301,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111498,7 +114312,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111507,14 +114321,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "wiedervorlage_board_member", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111523,7 +114340,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111534,7 +114351,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111545,7 +114362,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111554,14 +114371,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "wiedervorlage_freifeld_inhalt", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111570,7 +114390,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111581,7 +114401,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111590,20 +114410,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "resubmission_id", + "Index_type": "BTREE", "columns": [ "resubmission_id" - ] + ], + "Non_unique": "" } ] }, { "name": "wiedervorlage_freifeld_konfiguration", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111612,7 +114437,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111623,7 +114448,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111689,7 +114514,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111698,14 +114523,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "wiedervorlage_protokoll", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111714,7 +114542,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111725,7 +114553,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111736,7 +114564,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111758,7 +114586,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111769,7 +114597,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111780,7 +114608,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111791,7 +114619,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111802,7 +114630,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111822,20 +114650,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "wiedervorlageid", + "Index_type": "BTREE", "columns": [ "wiedervorlageid" - ] + ], + "Non_unique": "" } ] }, { "name": "wiedervorlage_stages", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111844,7 +114677,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111855,7 +114688,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111866,7 +114699,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111888,7 +114721,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111899,7 +114732,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111910,7 +114743,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111932,7 +114765,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111941,14 +114774,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "wiedervorlage_timeline", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -111957,7 +114793,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -111968,7 +114804,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -111979,7 +114815,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112001,7 +114837,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112012,7 +114848,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112023,7 +114859,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112034,7 +114870,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112067,7 +114903,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112076,14 +114912,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "wiedervorlage_view", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112092,7 +114931,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112103,7 +114942,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112114,7 +114953,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112156,14 +114995,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "wiedervorlage_zu_aufgabe_vorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112172,7 +115014,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112203,14 +115045,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "wiki", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112219,7 +115064,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112230,7 +115075,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112241,7 +115086,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112252,7 +115097,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112285,7 +115130,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112294,20 +115139,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "name", + "Index_type": "BTREE", "columns": [ "name" - ] + ], + "Non_unique": "" } ] }, { "name": "wiki_changelog", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112316,7 +115166,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112338,7 +115188,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112349,7 +115199,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112371,7 +115221,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112391,20 +115241,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "wiki_id", + "Index_type": "BTREE", "columns": [ "wiki_id" - ] + ], + "Non_unique": "" } ] }, { "name": "wiki_faq", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112413,7 +115268,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112435,7 +115290,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112446,7 +115301,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112457,7 +115312,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112488,20 +115343,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "wiki_id", + "Index_type": "BTREE", "columns": [ "wiki_id" - ] + ], + "Non_unique": "" } ] }, { "name": "wiki_subscription", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112510,7 +115370,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112552,20 +115412,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "wiki_id", + "Index_type": "BTREE", "columns": [ "wiki_id" - ] + ], + "Non_unique": "" } ] }, { "name": "wiki_workspace", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112574,7 +115439,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112585,7 +115450,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "UNI", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112596,7 +115461,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112607,7 +115472,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112618,7 +115483,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112638,20 +115503,25 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "name", + "Index_type": "BTREE", "columns": [ "name" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "wizard", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112660,7 +115530,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112682,7 +115552,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112693,7 +115563,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112704,7 +115574,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112715,7 +115585,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112726,7 +115596,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112757,21 +115627,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "user_id", + "Index_type": "BTREE", "columns": [ "user_id", "key" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "wizard_step", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112780,7 +115655,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112802,7 +115677,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112813,7 +115688,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112824,7 +115699,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112835,7 +115710,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112846,7 +115721,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112857,7 +115732,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112899,21 +115774,26 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "wizard_id", + "Index_type": "BTREE", "columns": [ "wizard_id", "key" - ] + ], + "Non_unique": "UNIQUE" } ] }, { "name": "zahlungsavis", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -112922,7 +115802,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -112933,7 +115813,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112966,7 +115846,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112977,7 +115857,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112988,7 +115868,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -112999,7 +115879,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113010,7 +115890,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113032,7 +115912,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113063,14 +115943,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "zahlungsavis_gutschrift", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113079,7 +115962,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -113110,14 +115993,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "zahlungsavis_mailausgang", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113126,7 +116012,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -113137,7 +116023,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113179,14 +116065,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "zahlungsavis_rechnung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113195,7 +116084,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -113226,14 +116115,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "zahlungsweisen", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113242,7 +116134,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -113253,7 +116145,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113264,7 +116156,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113275,7 +116167,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113363,7 +116255,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113374,7 +116266,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113383,14 +116275,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "zeiterfassung", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113399,7 +116294,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -113410,7 +116305,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113421,7 +116316,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113432,7 +116327,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113454,7 +116349,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113462,10 +116357,10 @@ { "Field": "beschreibung", "Type": "text", - "Collation": "utf8mb3_unicode_ci", + "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113476,7 +116371,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113487,7 +116382,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113498,7 +116393,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113520,7 +116415,7 @@ "Collation": null, "Null": "NO", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113531,7 +116426,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113542,7 +116437,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113553,7 +116448,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113575,7 +116470,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113586,7 +116481,7 @@ "Collation": null, "Null": "YES", "Key": "MUL", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113597,7 +116492,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113608,7 +116503,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113619,7 +116514,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113630,7 +116525,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113641,7 +116536,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113652,7 +116547,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113663,7 +116558,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113674,7 +116569,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113771,38 +116666,49 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse_abrechnung", + "Index_type": "BTREE", "columns": [ "adresse_abrechnung" - ] + ], + "Non_unique": "" }, { "Key_name": "abgerechnet", + "Index_type": "BTREE", "columns": [ "abgerechnet" - ] + ], + "Non_unique": "" }, { "Key_name": "abrechnen", + "Index_type": "BTREE", "columns": [ "abrechnen" - ] + ], + "Non_unique": "" }, { "Key_name": "adresse", + "Index_type": "BTREE", "columns": [ "adresse" - ] + ], + "Non_unique": "" } ] }, { "name": "zeiterfassungvorlage", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113811,7 +116717,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -113822,7 +116728,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113844,7 +116750,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113855,7 +116761,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113908,14 +116814,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "zertifikatgenerator", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -113924,7 +116833,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -113946,7 +116855,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113957,7 +116866,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113968,7 +116877,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113979,7 +116888,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -113990,7 +116899,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114056,7 +116965,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114078,7 +116987,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114111,7 +117020,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114122,7 +117031,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114133,7 +117042,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114144,7 +117053,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114155,7 +117064,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114175,14 +117084,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "zolltarifnummer", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114191,7 +117103,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -114202,7 +117114,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114213,7 +117125,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114224,7 +117136,7 @@ "Collation": "utf8mb3_general_ci", "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114233,14 +117145,17 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] }, { "name": "zwischenlager", + "collation": "utf8mb3_general_ci", "type": "BASE TABLE", "columns": [ { @@ -114249,7 +117164,7 @@ "Collation": null, "Null": "NO", "Key": "PRI", - "Default": "", + "Default": null, "Extra": "auto_increment", "Privileges": "select,insert,update,references", "Comment": "" @@ -114260,7 +117175,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114271,7 +117186,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114282,7 +117197,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114293,7 +117208,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114304,7 +117219,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114315,7 +117230,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114326,7 +117241,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114337,7 +117252,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114348,7 +117263,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114359,7 +117274,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114370,7 +117285,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114381,7 +117296,7 @@ "Collation": "utf8mb3_general_ci", "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114392,7 +117307,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114403,7 +117318,7 @@ "Collation": null, "Null": "NO", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114414,7 +117329,7 @@ "Collation": null, "Null": "YES", "Key": "", - "Default": "", + "Default": null, "Extra": "", "Privileges": "select,insert,update,references", "Comment": "" @@ -114423,9 +117338,11 @@ "keys": [ { "Key_name": "PRIMARY", + "Index_type": "BTREE", "columns": [ "id" - ] + ], + "Non_unique": "" } ] } @@ -114445,6 +117362,16 @@ "name": "belegeregs", "type": "VIEW", "Create": "CREATE VIEW `belegeregs` AS select `rechnung`.`id` AS `id`,`rechnung`.`adresse` AS `adresse`,`rechnung`.`datum` AS `datum`,`rechnung`.`belegnr` AS `belegnr`,`rechnung`.`status` AS `status`,`rechnung`.`land` AS `land`,'rechnung' AS `typ`,`rechnung`.`umsatz_netto` AS `umsatz_netto`,`rechnung`.`erloes_netto` AS `erloes_netto`,`rechnung`.`deckungsbeitrag` AS `deckungsbeitrag`,`rechnung`.`provision_summe` AS `provision_summe`,`rechnung`.`vertriebid` AS `vertriebid`,`rechnung`.`gruppe` AS `gruppe`,`rechnung`.`projekt` AS `projekt` from `rechnung` union all select `gutschrift`.`id` AS `id`,`gutschrift`.`adresse` AS `adresse`,`gutschrift`.`datum` AS `datum`,`gutschrift`.`belegnr` AS `belegnr`,`gutschrift`.`status` AS `status`,`gutschrift`.`land` AS `land`,'gutschrift' AS `typ`,`gutschrift`.`umsatz_netto` * -1 AS `umsatz_netto*-1`,`gutschrift`.`erloes_netto` * -1 AS `erloes_netto*-1`,`gutschrift`.`deckungsbeitrag` * -1 AS `deckungsbeitrag*-1`,`gutschrift`.`provision_summe` * -1 AS `provision_summe*-1`,`gutschrift`.`vertriebid` AS `vertriebid`,`gutschrift`.`gruppe` AS `gruppe`,`gutschrift`.`projekt` AS `projekt` from `gutschrift`" + }, + { + "name": "fibu_buchungen_alle_view", + "type": "VIEW", + "Create": "CREATE VIEW `fibu_buchungen_alle_view` AS select `fb`.`buchungsart` AS `buchungsart`,`fb`.`typ` AS `typ`,`fb`.`id` AS `id`,if(`fibu_objekte_view`.`datum` <> '',`fibu_objekte_view`.`datum`,`fb`.`datum`) AS `datum`,`fb`.`gegen_typ` AS `doc_typ`,`fb`.`gegen_id` AS `doc_id`,`fibu_objekte_view`.`info` AS `doc_info`,`fb`.`soll` AS `betrag`,`fb`.`waehrung` AS `waehrung`,`fb`.`edit_module` AS `edit_module`,`fb`.`edit_id` AS `edit_id` from ((select 'umsatz' AS `buchungsart`,'rechnung' AS `typ`,`rechnung`.`id` AS `id`,-`rechnung`.`soll` AS `soll`,`rechnung`.`waehrung` AS `waehrung`,'rechnung' AS `gegen_typ`,`rechnung`.`id` AS `gegen_id`,`rechnung`.`datum` AS `datum`,'rechnung' AS `edit_module`,`rechnung`.`id` AS `edit_id` from `rechnung` where `rechnung`.`belegnr` <> '' union select 'umsatz' AS `umsatz`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`soll` AS `soll`,`gutschrift`.`waehrung` AS `waehrung`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`datum` AS `datum`,'gutschrift' AS `edit_module`,`gutschrift`.`id` AS `id` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select 'aufwand' AS `aufwand`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`betrag` AS `betrag`,`verbindlichkeit`.`waehrung` AS `waehrung`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id` from `verbindlichkeit` where `verbindlichkeit`.`belegnr` <> '' union select 'zahlung' AS `zahlung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,`kontoauszuege`.`soll` AS `soll`,`kontoauszuege`.`waehrung` AS `waehrung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,`kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id` from `kontoauszuege` where `kontoauszuege`.`importfehler` is null union select 'abbuchung' AS `abbuchung`,`fibu_buchungen`.`von_typ` AS `von_typ`,`fibu_buchungen`.`von_id` AS `von_id`,`fibu_buchungen`.`betrag` AS `betrag`,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`nach_typ` AS `nach_typ`,`fibu_buchungen`.`nach_id` AS `nach_id`,`fibu_buchungen`.`datum` AS `datum`,'fibu_buchungen' AS `fibu_buchungen`,`fibu_buchungen`.`id` AS `id` from `fibu_buchungen` union select 'zubuchung' AS `zubuchung`,`fibu_buchungen`.`nach_typ` AS `nach_typ`,`fibu_buchungen`.`nach_id` AS `nach_id`,-`fibu_buchungen`.`betrag` AS `-``openxe``.``fibu_buchungen``.``betrag```,`fibu_buchungen`.`waehrung` AS `waehrung`,`fibu_buchungen`.`von_typ` AS `von_typ`,`fibu_buchungen`.`von_id` AS `von_id`,`fibu_buchungen`.`datum` AS `datum`,'fibu_buchungen' AS `fibu_buchungen`,`fibu_buchungen`.`id` AS `id` from `fibu_buchungen`) `fb` left join `fibu_objekte_view` on(`fb`.`gegen_typ` = `fibu_objekte_view`.`typ` and `fb`.`gegen_id` = `fibu_objekte_view`.`id`)) where `fb`.`datum` >= (select `firmendaten_werte`.`wert` from `firmendaten_werte` where `firmendaten_werte`.`name` = 'fibu_buchungen_startdatum') and `fibu_objekte_view`.`datum` >= (select `firmendaten_werte`.`wert` from `firmendaten_werte` where `firmendaten_werte`.`name` = 'fibu_buchungen_startdatum') or `fibu_objekte_view`.`datum` = ''" + }, + { + "name": "fibu_objekte_view", + "type": "VIEW", + "Create": "CREATE VIEW `fibu_objekte_view` AS select `fo`.`datum` AS `datum`,`fo`.`typ` AS `typ`,`fo`.`id` AS `id`,`fo`.`info` AS `info`,`fo`.`parent_typ` AS `parent_typ`,`fo`.`parent_id` AS `parent_id`,`fo`.`parent_info` AS `parent_info`,`fo`.`typ` in ('rechnung','gutschrift','verbindlichkeit','auftrag') AS `is_beleg` from (select `auftrag`.`datum` AS `datum`,'auftrag' AS `typ`,`auftrag`.`id` AS `id`,`auftrag`.`belegnr` AS `info`,'adresse' AS `parent_typ`,`auftrag`.`adresse` AS `parent_id`,`auftrag`.`name` AS `parent_info` from `auftrag` where `auftrag`.`belegnr` <> '' union select `rechnung`.`datum` AS `datum`,'rechnung' AS `typ`,`rechnung`.`id` AS `id`,`rechnung`.`belegnr` AS `info`,'adresse' AS `parent_type`,`rechnung`.`adresse` AS `parent_id`,`rechnung`.`name` AS `parent_info` from `rechnung` where `rechnung`.`belegnr` <> '' union select `gutschrift`.`datum` AS `datum`,'gutschrift' AS `gutschrift`,`gutschrift`.`id` AS `id`,`gutschrift`.`belegnr` AS `belegnr`,'adresse' AS `parent_type`,`gutschrift`.`adresse` AS `parent_id`,`gutschrift`.`name` AS `parent_info` from `gutschrift` where `gutschrift`.`belegnr` <> '' union select `verbindlichkeit`.`rechnungsdatum` AS `rechnungsdatum`,'verbindlichkeit' AS `verbindlichkeit`,`verbindlichkeit`.`id` AS `id`,`verbindlichkeit`.`rechnung` AS `belegnr`,'adresse' AS `parent_type`,`verbindlichkeit`.`adresse` AS `parent_id`,`adresse`.`name` AS `name` from (`verbindlichkeit` join `adresse` on(`verbindlichkeit`.`adresse` = `adresse`.`id`)) where `verbindlichkeit`.`belegnr` <> '' union select `kontoauszuege`.`buchung` AS `buchung`,'kontoauszuege' AS `kontoauszuege`,`kontoauszuege`.`id` AS `id`,concat(`konten`.`kurzbezeichnung`,' - ',`kontoauszuege`.`buchungstext`) AS `buchungstext`,'konten' AS `parent_type`,`kontoauszuege`.`konto` AS `parent_id`,`konten`.`bezeichnung` AS `bezeichnung` from (`kontoauszuege` left join `konten` on(`konten`.`id` = `kontoauszuege`.`konto`)) union select '' AS `datum`,'kontorahmen' AS `'kontorahmen'`,`kontorahmen`.`id` AS `id`,concat(`kontorahmen`.`sachkonto`,' - ',`kontorahmen`.`beschriftung`) AS `beschriftung`,'','','' from `kontorahmen`) `fo` where `fo`.`datum` >= (select `firmendaten_werte`.`wert` from `firmendaten_werte` where `firmendaten_werte`.`name` = 'fibu_buchungen_startdatum') or `fo`.`datum` = ''" } ] } diff --git a/upgrade/data/upgrade.php b/upgrade/data/upgrade.php index 538e4045..dce88910 100644 --- a/upgrade/data/upgrade.php +++ b/upgrade/data/upgrade.php @@ -415,6 +415,10 @@ function upgrade_main(string $directory,bool $verbose, bool $check_git, bool $do $counter++; echo_out("\rUpgrade step $counter of $number_of_statements... "); + if ($verbose) { + echo_out("\n".$sql."\n"); + } + $query_result = mysqli_query($mysqli, $sql); if (!$query_result) { $error = " not ok: ". mysqli_error($mysqli); diff --git a/vendor/mustal/mustal_mysql_upgrade_tool.php b/vendor/mustal/mustal_mysql_upgrade_tool.php index 00e90458..1646204d 100644 --- a/vendor/mustal/mustal_mysql_upgrade_tool.php +++ b/vendor/mustal/mustal_mysql_upgrade_tool.php @@ -79,20 +79,22 @@ function mustal_load_tables_from_db(string $host, string $schema, string $user, } // Get db_def and views - $sql = "SHOW FULL tables WHERE Table_type = 'BASE TABLE'"; + $sql = "SHOW TABLE STATUS WHERE engine IS NOT NULL"; $query_result = mysqli_query($mysqli, $sql); if (!$query_result) { return(array()); } while ($row = mysqli_fetch_assoc($query_result)) { $table = array(); - $table['name'] = $row['Tables_in_'.$schema]; - $table['type'] = $row['Table_type']; + $table['name'] = $row['Name']; + $table['collation'] = $row['Collation']; + $table['type'] = 'BASE TABLE'; $tables[] = $table; // Add table to list of tables } // Get and add columns of the table foreach ($tables as &$table) { + $sql = "SHOW FULL COLUMNS FROM ".$table['name']; $query_result = mysqli_query($mysqli, $sql); @@ -109,6 +111,10 @@ function mustal_load_tables_from_db(string $host, string $schema, string $user, $column['Default'] = mustal_mysql_put_text_type_in_quotes($column['Type'],$column['Default']); } + if (empty($column['Collation']) && mustal_is_string_type($column['Type'])) { + $column['Collation'] = $table['collation']; + } + $columns[] = $column; // Add column to list of columns } $table['columns'] = $columns; @@ -135,6 +141,13 @@ function mustal_load_tables_from_db(string $host, string $schema, string $user, $composed_key['Key_name'] = $key['Key_name']; $composed_key['Index_type'] = $key['Index_type']; $composed_key['columns'][] = $key['Column_name']; + + if ($key['Key_name'] != 'PRIMARY') { + $composed_key['Non_unique'] = ($key['Non_unique'] == 1)?'':'UNIQUE'; + } else { + $composed_key['Non_unique'] = ''; + } + $composed_keys[] = $composed_key; } else { // Given key, add column @@ -161,9 +174,16 @@ function mustal_load_tables_from_db(string $host, string $schema, string $user, foreach ($views as &$view) { $sql = "SHOW CREATE VIEW ".$view['name']; - $query_result = mysqli_query($mysqli, $sql); + + try { + $query_result = mysqli_query($mysqli, $sql); + } + catch (exception $e) { + $query_result = false; // VIEW is erroneous + } if (!$query_result) { - return(array()); + $view['Create'] = ''; + continue; } $viewdef = mysqli_fetch_assoc($query_result); @@ -330,19 +350,19 @@ function mustal_compare_table_array(array $nominal, string $nominal_name, array // Compare the properties of the sql_indexs if ($check_column_definitions) { $found_sql_index = $found_table['keys'][$sql_index_key]; + foreach ($sql_index as $key => $value) { if ($found_sql_index[$key] != $value) { - -// if ($key != 'permissions') { - $compare_difference = array(); - $compare_difference['type'] = "Key definition"; - $compare_difference['table'] = $database_table['name']; - $compare_difference['key'] = $sql_index['Key_name']; - $compare_difference['property'] = $key; - $compare_difference[$nominal_name] = implode(',',$value); - $compare_difference[$actual_name] = implode(',',$found_sql_index[$key]); - $compare_differences[] = $compare_difference; -// } + $compare_difference = array(); + $compare_difference['type'] = "Key definition"; + $compare_difference['table'] = $database_table['name']; + $compare_difference['key'] = $sql_index['Key_name']; + $compare_difference['property'] = $key; +/* $compare_difference[$nominal_name] = implode(',',$value); + $compare_difference[$actual_name] = implode(',',$found_sql_index[$key]);*/ + $compare_difference[$nominal_name] = $value; + $compare_difference[$actual_name] = $found_sql_index[$key]; + $compare_differences[] = $compare_difference; } } unset($value); @@ -401,9 +421,11 @@ function mustal_compare_table_array(array $nominal, string $nominal_name, array // Generate SQL to create or modify column function mustal_column_sql_definition(string $table_name, array $column, array $reserved_words_without_quote) : string { + $column_is_string_type = mustal_is_string_type($column['Type']); + foreach($column as $key => &$value) { $value = (string) $value; - $value = mustal_column_sql_create_property_definition($key,$value,$reserved_words_without_quote); + $value = mustal_column_sql_create_property_definition($key,$value,$reserved_words_without_quote,$column_is_string_type); } // Default handling here @@ -422,7 +444,7 @@ function mustal_column_sql_definition(string $table_name, array $column, array $ } // Generate SQL to modify a single column property -function mustal_column_sql_create_property_definition(string $property, string $property_value, array $reserved_words_without_quote) : string { +function mustal_column_sql_create_property_definition(string $property, string $property_value, array $reserved_words_without_quote, $column_is_string_type) : string { switch ($property) { case 'Type': @@ -453,8 +475,10 @@ function mustal_column_sql_create_property_definition(string $property, string $ } break; case 'Collation': - if ($property_value != '') { + if ($property_value != '' && $column_is_string_type) { $property_value = " COLLATE ".$property_value; + } else { + $property_value = ""; } break; default: @@ -468,9 +492,9 @@ function mustal_column_sql_create_property_definition(string $property, string $ // Replaces different variants of the same function mustal_to allow comparison function mustal_sql_replace_reserved_functions(array &$column, array $replacers) { - $result = strtolower($column['Default']); + $result = $column['Default']; foreach ($replacers as $replace) { - if ($result == $replace[0]) { + if (strtolower($column['Default']) == $replace[0]) { $result = $replace[1]; } } @@ -568,7 +592,7 @@ function mustal_calculate_db_upgrade(array $compare_def, array $db_def, array &$ $index_type = ""; } - $keystring = $index_type." KEY `".$key['Key_name']."` "; + $keystring = $index_type." ".$key['Non_unique']." KEY `".$key['Key_name']."` "; } $sql .= $comma.$keystring."(`".implode("`,`",$key['columns'])."`) "; } @@ -652,7 +676,7 @@ function mustal_calculate_db_upgrade(array $compare_def, array $db_def, array &$ if ($key_key !== false) { $key = $table['keys'][$key_key]; - $sql = "ALTER TABLE `$table_name` ADD KEY `".$key_name."` "; + $sql = "ALTER TABLE `$table_name` ADD ".$key['Non_unique']." KEY `".$key_name."` "; $sql .= "(`".implode("`,`",$key['columns'])."`)"; $sql .= ";"; $upgrade_sql[] = $sql; @@ -682,7 +706,7 @@ function mustal_calculate_db_upgrade(array $compare_def, array $db_def, array &$ $sql = "ALTER TABLE `$table_name` DROP KEY `".$key_name."`;"; $upgrade_sql[] = $sql; - $sql = "ALTER TABLE `$table_name` ADD KEY `".$key_name."` "; + $sql = "ALTER TABLE `$table_name` ADD ".$key['Non_unique']." KEY `".$key_name."` "; $sql .= "(`".implode("`,`",$key['columns'])."`)"; $sql .= ";"; $upgrade_sql[] = $sql; @@ -743,6 +767,17 @@ function mustal_calculate_db_upgrade(array $compare_def, array $db_def, array &$ array_unshift($upgrade_sql,"SET SQL_MODE='ALLOW_INVALID_DATES';","SET SESSION innodb_strict_mode=OFF;"); } - return($result); } + +// Check if given type is a string, relevant for collation +function mustal_is_string_type(string $type) { + $mustal_string_types = array('varchar','char','text','tinytext','mediumtext','longtext'); + foreach($mustal_string_types as $string_type) { + if (stripos($type,$string_type) === 0) { + return(true); + } + } + return(false); +} + diff --git a/version.php b/version.php index d08606eb..b6cec222 100755 --- a/version.php +++ b/version.php @@ -1,7 +1,7 @@ '," . $field . ",'')," . $field . ")"; } + // @refactor DbHelper Komponente + // creates a CONCAT sql statement with strings or sql expressions + // Use like this: ConcatSQL(' 'id','>','click here'); + function ConcatSQL(array $fields) { + $result = "CONCAT("; + $comma = ""; + foreach ($fields as $field) { + if (gettype($field) == 'array') { + $result .= $comma.$field['sql']; + } else { + $result .= $comma."'".$field."'"; + } + $comma = ","; + } + $result .= ")"; + return($result); + } + // @refactor Formater Komponente function Dateinamen($text) { $text = $this->UmlauteEntfernen($text); @@ -7095,6 +7118,8 @@ title: 'Abschicken', $navarray['menu']['admin'][$menu]['sec'][] = array('Arbeitsnachweis','arbeitsnachweis','list'); $navarray['menu']['admin'][$menu]['sec'][] = array('Gutschrift / '.$this->Firmendaten("bezeichnungstornorechnung"),'gutschrift','list'); $navarray['menu']['admin'][$menu]['sec'][] = array('Proformarechnung','proformarechnung','list'); + $navarray['menu']['admin'][$menu]['sec'][] = array('Kontoauszüge','kontoauszuege','list'); + $navarray['menu']['admin'][$menu]['sec'][] = array('Buchungen','fibu_buchungen','list'); $navarray['menu']['admin'][$menu]['sec'][] = array('Abolauf','rechnungslauf','list'); $navarray['menu']['admin'][$menu]['sec'][] = array('Mahnwesen','mahnwesen','list'); @@ -12673,6 +12698,10 @@ function SendPaypalFromAuftrag($auftrag, $test = false) //TODO zahlungsweisemodul $zahlungsweise = strtolower($zahlungsweise); +/* + + OLD CODE REPLACED BY FUNCTION IN auftrag.php / fibu_buchungen + if($zahlungsweisenmodule = $this->app->DB->SelectArr("SELECT id, modul, verhalten FROM zahlungsweisen WHERE type = '".$this->app->DB->real_escape_string($zahlungsweise)."' AND (projekt = '$projekt' OR projekt = 0) ORDER BY projekt = '$projekt' DESC LIMIT 1 ")) @@ -12700,6 +12729,9 @@ function SendPaypalFromAuftrag($auftrag, $test = false) $this->app->DB->Update("UPDATE auftrag SET vorkasse_ok='0' WHERE id='$auftrag' LIMIT 1"); } } + +*/ + //nachnahme gebuehr check!!!! //$nachnahme = $this->app->DB->Select("SELECT id FROM auftrag_position WHERE auftrag='$auftrag' AND nummer='200001' LIMIT 1"); $nachnahme = $this->app->DB->Select("SELECT COUNT(ap.id) FROM auftrag_position ap, artikel a WHERE ap.auftrag='$auftrag' AND ap.artikel=a.id AND a.porto=1 AND ap.preis >= 0 @@ -22193,8 +22225,8 @@ function ChargenMHDAuslagern($artikel, $menge, $lagerplatztyp, $lpid,$typ,$wert, $this->app->DB->Delete("DELETE lager_charge FROM lager_charge INNER JOIN lager_platz ON lager_platz.id=lager_charge.lager_platz WHERE lager_platz.verbrauchslager='1' AND lager_platz.id = '$regal'"); - $this->app->DB->Delete("DELETE lager_seriennummer FROM lager_seriennummer - INNER JOIN lager_platz ON lager_platz.id=lager_seriennummer.lager_platz + $this->app->DB->Delete("DELETE FROM lager_seriennummern + INNER JOIN lager_platz ON lager_platz.id=lager_seriennummern.lager_platz WHERE lager_platz.verbrauchslager='1' AND lager_platz.id = '$regal'"); $this->app->DB->Delete("DELETE lager_mindesthaltbarkeitsdatum FROM lager_mindesthaltbarkeitsdatum @@ -22212,8 +22244,8 @@ function ChargenMHDAuslagern($artikel, $menge, $lagerplatztyp, $lpid,$typ,$wert, $this->app->DB->Delete("DELETE lager_charge FROM lager_charge INNER JOIN lager_platz ON lager_platz.id=lager_charge.lager_platz WHERE lager_platz.verbrauchslager='1'"); - $this->app->DB->Delete("DELETE lager_seriennummer FROM lager_seriennummer - INNER JOIN lager_platz ON lager_platz.id=lager_seriennummer.lager_platz + $this->app->DB->Delete("DELETE FROM lager_seriennummern + INNER JOIN lager_platz ON lager_platz.id=lager_seriennummern.lager_platz WHERE lager_platz.verbrauchslager='1'"); $this->app->DB->Delete("DELETE lager_mindesthaltbarkeitsdatum FROM lager_mindesthaltbarkeitsdatum @@ -34500,7 +34532,7 @@ function Firmendaten($field,$projekt="") $this->CopyBelegZwischenpositionen('rechnung',$id,'gutschrift',$newid); $this->app->DB->Update("UPDATE gutschrift SET stornorechnung='$stornorechnung', ohne_briefpapier='".$ohnebriefpapier."' WHERE id='$newid,' LIMIT 1"); - $this->app->DB->Update("UPDATE rechnung SET schreibschutz='1',status='storniert',zahlungsstatus='bezahlt' WHERE id='$id' LIMIT 1"); + $this->app->DB->Update("UPDATE rechnung SET schreibschutz='1',status='storniert' WHERE id='$id' LIMIT 1"); $this->RechnungProtokoll($id, $grund); $this->SchnellFreigabe("gutschrift",$newid); return $newid; @@ -35641,7 +35673,7 @@ function Firmendaten($field,$projekt="") $rechnungid = $this->app->DB->Select("SELECT rechnungid FROM gutschrift WHERE id='$id' LIMIT 1"); if($rechnungid > 0 && $this->Firmendaten("mahnwesenmitkontoabgleich")=="1") { - $this->app->DB->Update("UPDATE rechnung SET ist=0, zahlungsstatus='offen' WHERE id='$rechnungid' AND mahnwesenfestsetzen!=1 LIMIT 1"); + $this->app->DB->Update("UPDATE rechnung SET zahlungsstatus='offen' WHERE id='$rechnungid' AND mahnwesenfestsetzen!=1 LIMIT 1"); $this->RechnungNeuberechnen($rechnungid); } } @@ -35819,6 +35851,213 @@ function Firmendaten($field,$projekt="") } } + /* + * Retrieve the associated documents regarding payments + * Gutschrift -> Rechnung -> Auftrag OR Verbindlichkeit + * Results array of ids, types, belegnr + */ + public function GetZahlungenAssociatedDocuments(int $id, string $type, string $lastlevel = 'auftrag') : array { + + $assocs = array( + array( + 'type' => 'auftrag', + 'below' => 'rechnung', + ), + array( + 'above' => 'auftrag', + 'type' => 'rechnung', + 'below' => 'gutschrift' + ), + array( + 'above' => 'rechnung', + 'type' => 'gutschrift' + ), + array( + 'type' => 'verbindlichkeit' + ) + ); + + + if ($id <= 0) { + throw new exception('no id provided'); + } + + if (!in_array($type, array('rechnung','gutschrift','auftrag','verbindlichkeit'))) { + throw new exception('invalid type '.$type); + } + + $id = $this->app->Secure->GetGET('id'); + + // Go to highest level + $above = $assocs[array_search($type,array_column($assocs,'type'))]['above']; + while ($above) { + + if ($type == $lastlevel) { + break; + } + + $sql = "SELECT ".$above."id as id FROM ".$type." WHERE id = ".$id; + $above_id = $this->app->DB->SelectArr($sql)[0]; + if (!empty($above)) { + $type = $above; + $id = $above_id['id']; + } + $above = $assocs[array_search($type,array_column($assocs,'type'))]['above']; + } + + // Cascade down and retrieve all documents + $result_documents = array(); + $ids = array($id); + $ref = 'id'; + do { + $sql = "SELECT id, '".$type."' AS type, belegnr FROM ".$type." WHERE ".$ref." IN (".implode(",",$ids).")"; + $result = $this->app->DB->SelectArr($sql); + if (!empty($result)) { + $result_documents = array_merge($result_documents, $result); + $ids = array_column($result,'id'); + $ref = $type."id"; + $type = $assocs[array_search($type,array_column($assocs,'type'))]['below']; + } else { + break; + } + } while ($type); + + return($result_documents); + } + + /* + * Calculate the payments of a document (rechnung, gutschrift, auftrag, verbindlichkeit) + * Results array of payments (datum, doc_type, doc_id, doc_inof, betrag, waehrung) + * Gutschrift -> Rechnungid, Rechnung -> Auftragid + */ + + public function GetZahlungen(int $id, string $type, string $cascadelevel = '') : array { + + if ($cascadelevel != '') { + $documents = $this->GetZahlungenAssociatedDocuments($id, $type, $cascadelevel); + } else { + $documents = array(array('id' => $id, 'type' => $type)); + } + + if (empty($documents)) { + return(array()); + } + + $ids = array(); + + foreach ($documents as $document) { + $ids[] = $document['type'].$document['id']; + } + + $sql = " + SELECT + typ, + id, + ".$this->app->erp->FormatDate('datum')." as datum, + doc_typ, + doc_id, + doc_info, + ".$this->app->erp->FormatMenge('betrag',2)." as betrag, + waehrung + FROM + fibu_buchungen_alle + WHERE + CONCAT(typ,id) IN ('".implode("','",$ids)."') + ORDER BY + (SELECT datum) ASC + "; + + $result = $this->app->DB->SelectArr($sql); + + if (empty($result)) { + return(array()); + } + return($result); + } + + /* + * Calculate the payment saldo information of a document + * Auftrag: gesamtsumme, rechnung: soll, gutschrift: soll verbindlichkeit: betrag + * returns array(array(betrag, waehrung)) one line per waehrung + */ + public function GetSaldenDokument(int $id, string $type, string $cascadelevel = '') : array { + + if ($cascadelevel != '') { + $documents = $this->GetZahlungenAssociatedDocuments($id, $type, $cascadelevel); + } else { + $documents = array(array('id' => $id, 'type' => $type)); + } + + if (empty($documents)) { + return(array()); + } + + $ids = array(); + + foreach ($documents as $document) { + $ids[] = $document['type'].$document['id']; + } + + $sql = " + SELECT + ".$this->app->erp->FormatMenge('SUM(betrag)',2)." as betrag, + waehrung + FROM + fibu_buchungen_alle + WHERE + CONCAT(typ,id) IN ('".implode("','",$ids)."') + GROUP BY + waehrung"; + + $result = $this->app->DB->SelectArr($sql); + + if (!empty($result)) { + return($result); + } + return(array()); + } + + + /* + * Calculate the payment amount of a document + * Auftrag: gesamtsumme, rechnung: soll, gutschrift: soll verbindlichkeit: betrag + * returns array(betrag, waehrung) or empty array if multiple + */ + public function GetSaldoDokument(int $id, string $type) : array { + + $sql = " + SELECT + SUM(betrag) as betrag, + waehrung + FROM + fibu_buchungen_alle + WHERE + typ = '".$type."' AND id = ".$id." + GROUP BY + waehrung"; + + $result = $this->app->DB->SelectArr($sql); + + if (!empty($result)) { + if (count($result) == 1) { + return($result[0]); + } + } + return(array()); + } + + /* + * Create a fibu buchung + * using module fibu_buchungen + */ + public function fibu_buchungen_buchen(string $von_typ, int $von_id, string $nach_typ, int $nach_id, $betrag, string $waehrung, $datum, string $internebemerkung) { + $fibu_buchungen = $this->app->loadModule('fibu_buchungen', false); + if($fibu_buchungen !== null && method_exists($fibu_buchungen, 'fibu_buchungen_buchen')) { + return $fibu_buchungen->fibu_buchungen_buchen($von_typ, $von_id, $nach_typ, $nach_id, $betrag, $waehrung, $datum, $internebemerkung); + } + } + + public function ANABREGSNeuberechnen($id,$art,$force=false) { if($id <= 0 || empty($art)) diff --git a/www/pages/ajax.php b/www/pages/ajax.php index b5276378..192fcfc4 100644 --- a/www/pages/ajax.php +++ b/www/pages/ajax.php @@ -2072,6 +2072,20 @@ select a.kundennummer, (SELECT name FROM adresse a2 WHERE a2.kundennummer = a.ku $newarr[] = $arr[$i]['name']; break; + case "fibu_objekte": + $arr = $this->app->DB->SelectArr("SELECT CONCAT(".$this->app->erp->FormatUCfirst('typ').",'-',id,'-',info) as objekt FROM fibu_objekte WHERE info LIKE '%$term%' LIMIT 20"); + $carr = !empty($arr)?count($arr):0; + for($i = 0; $i < $carr; $i++) + $newarr[] = $arr[$i]['objekt']; + break; + + case "fibu_belege": + $arr = $this->app->DB->SelectArr("SELECT CONCAT(".$this->app->erp->FormatUCfirst('typ').",'-',id,'-',info) as objekt FROM fibu_objekte WHERE info LIKE '%$term%' AND typ IN ('auftrag','rechnung','gutschrift','verbindlichkeit') LIMIT 20"); + $carr = !empty($arr)?count($arr):0; + for($i = 0; $i < $carr; $i++) + $newarr[] = $arr[$i]['objekt']; + break; + case "vpeartikel": $arr = $this->app->DB->SelectArr("SELECT DISTINCT vpe FROM verkaufspreise WHERE geloescht=0 AND vpe LIKE '%$term%' ORDER by vpe"); $carr = !empty($arr)?count($arr):0; diff --git a/www/pages/auftrag.php b/www/pages/auftrag.php index 372f252f..869ea9fe 100644 --- a/www/pages/auftrag.php +++ b/www/pages/auftrag.php @@ -848,7 +848,7 @@ class Auftrag extends GenAuftrag FROM auftrag auf INNER JOIN auftrag_position ON auf.id = auftrag_position.auftrag INNER JOIN artikel ON auftrag_position.artikel = artikel.id - WHERE auf.status <> 'abgeschlossen' AND auf.belegnr <> '' + WHERE auf.status NOT IN ('abgeschlossen','storniert') AND auf.belegnr <> '' ORDER BY urspruengliches_lieferdatum ASC, auf.belegnr ASC, auftrag_position.sort ASC ) a"; @@ -3182,6 +3182,11 @@ class Auftrag extends GenAuftrag ); } + $this->app->Tpl->Add( + 'ZAHLUNGEN', + $this->AuftragZahlung(true) + ); + // schaue ob es eine GS zu diesem Auftrag gibt // schaue ob es eine GS zu diesem Auftrag gibt //$gutschriftid = $this->app->DB->Select("SELECT id FROM gutschrift WHERE rechnungid='$rechnungid' LIMIT 1"); @@ -3409,7 +3414,47 @@ class Auftrag extends GenAuftrag Lieferadresse:

$lieferadresse"; } + /* Build the html output for minidetail containing the payments + * @param bool $return + * + * @return string + */ + function AuftragZahlung($return=false) + { + $id = $this->app->Secure->GetGET('id'); + $zahlungen = $this->app->erp->GetZahlungen($id,'auftrag',true); + if (!empty($zahlungen)) { + $et = new EasyTable($this->app); + + $et->headings = array('Datum','Beleg','Betrag','Währung'); + + foreach ($zahlungen as $zahlung) { + $row = array( + $zahlung['datum'], + " + ".ucfirst($zahlung['doc_typ'])." + ".$zahlung['doc_info']." + ", + $zahlung['betrag'], + $zahlung['waehrung'] + ); + $et->AddRow($row); + } + + $salden = $this->app->erp->GetSaldenDokument($id,'auftrag',true); + foreach ($salden as $saldo) { + $row = array( + '', + 'Saldo', + "".$saldo['betrag']."", + "".$saldo['waehrung']."" + ); + $et->AddRow($row); + } + return($et->DisplayNew('return',"")); + } + } function AuftragZahlungsmail() { @@ -6666,6 +6711,29 @@ Die Gesamtsumme stimmt nicht mehr mit ursprünglich festgelegten Betrag '. public function AuftragList() { + + // refresh all open items + $openids = $this->app->DB->SelectArr("SELECT id, gesamtsumme, waehrung from auftrag WHERE status <> 'abgeschlossen'"); + + foreach ($openids as $openid) { + $saldo = $this->app->erp->GetSaldoDokument($openid['id'],'auftrag'); + if (!empty($saldo)) { + if ($saldo['waehrung'] == $openid['waehrung'] && $saldo['betrag'] >= $openid['gesamtsumme']) { + $sql = "UPDATE + auftrag + SET + vorkasse_ok = 1 + WHERE id=".$openid['id']; + $this->app->DB->Update($sql); + continue; + } + } + else { + $this->app->DB->Update("UPDATE auftrag SET vorkasse_ok = 0 WHERE id=".$openid['id']); + } + } + + if($this->app->Secure->GetPOST('ausfuehren') && $this->app->erp->RechteVorhanden('auftrag', 'edit')) { $drucker = $this->app->Secure->GetPOST('seldrucker'); diff --git a/www/pages/content/auftrag_minidetail.tpl b/www/pages/content/auftrag_minidetail.tpl index dad0606e..46cea5af 100644 --- a/www/pages/content/auftrag_minidetail.tpl +++ b/www/pages/content/auftrag_minidetail.tpl @@ -87,7 +87,7 @@ -->
-

{|Zahlungseingang|}

+

{|Zahlungen|}

[ZAHLUNGEN]
diff --git a/www/pages/content/fibu_buchungen_edit.tpl b/www/pages/content/fibu_buchungen_edit.tpl new file mode 100644 index 00000000..b8b158ac --- /dev/null +++ b/www/pages/content/fibu_buchungen_edit.tpl @@ -0,0 +1,204 @@ +
+ + +
+ [MESSAGE] +
+ [FORMHANDLEREVENT] +
+
+
+
+
+ {|Einzelbuchung bearbeiten.|} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ {|Von|}: + + [VON] + + +
+ {|Nach|}: + + [NACH] + + +
+ {|Betrag|}: + + +
+ {|Währung|}: + + +
+ {|Benutzer|}: + + [BENUTZER] +
+ {|Datum|}: + + +
+ {|Internebemerkung|}: + + +
+
+ +
+
+
+
+ [TAB1] + +
+
+ +
+ diff --git a/www/pages/content/fibu_buchungen_einzelzuordnen.tpl b/www/pages/content/fibu_buchungen_einzelzuordnen.tpl new file mode 100644 index 00000000..f1fe83b4 --- /dev/null +++ b/www/pages/content/fibu_buchungen_einzelzuordnen.tpl @@ -0,0 +1,105 @@ +
+
+
    +
  • +
+
+ [MESSAGE] + [FORMHANDLEREVENT] + {|Einzelsaldo zuordnen und auf mehrere Gegenbelege oder Sachkonto verbuchen.|} +
+
+
+
+
+ + + + + + + +
+ "[DOC_ZUORDNUNG]" +
+ Saldo: [DOC_SALDO] +
+
+
+
+
+
+
+ + + + + + + + +
+ Multifilter für "Info" (Trennzeichen ',; ') +
+ + + +
+
+
+
+
+
+
+
+
+
+ [TAB1] +
+ + Stapelverarbeitung + + + + + + + + + + + + + +
 Mit Abweichung buchen 
 alle markieren  +  Sachkonto: + + +
+ % Abschlag auf Buchungsbetrag
+ +
+
+
+
+
+
+
+
+ +
+ + diff --git a/www/pages/content/fibu_buchungen_list.tpl b/www/pages/content/fibu_buchungen_list.tpl new file mode 100644 index 00000000..35ed3796 --- /dev/null +++ b/www/pages/content/fibu_buchungen_list.tpl @@ -0,0 +1,62 @@ +
+ +
+ Saldenübersicht. Salden müssen über Gegenbuchungen ausgeglichen werden.

+
+ [MESSAGE] +
+
+
+
+
+ [TAB1] +
+
+
+
+
+
+ + {|Aktionen|} + +
+
+
+
+
+
+
+ [TAB1NEXT] +
+
+
+ [MESSAGE] +
+
+
+
+
+ {|Einzelbuchungen|} + [TAB2] +
+
+
+
+
+
+ + {|Aktionen|} + +
+
+
+
+
+
+
+ [TAB2NEXT] +
+
diff --git a/www/pages/content/fibu_buchungen_zuordnen.tpl b/www/pages/content/fibu_buchungen_zuordnen.tpl new file mode 100644 index 00000000..cb3582c6 --- /dev/null +++ b/www/pages/content/fibu_buchungen_zuordnen.tpl @@ -0,0 +1,79 @@ +
+ +
+ [MESSAGE] + [FORMHANDLEREVENT] +
+
+
+
+
+ {|Einzelsalden zuordnen und auf Gegenbelege oder Sachkonto verbuchen.|} +
+
+
{|Filter|}
+
    +
  • + + +
  • +
  • + + +
  • +
+
+
+
+ [TAB1] +
+
+
+ + Stapelverarbeitung + + + + + + + + +
 alle markieren  +  Sachkonto: + + +
+ +
+
+
+
+
+
+
+
+ + diff --git a/www/pages/content/firmendaten.tpl b/www/pages/content/firmendaten.tpl index 80ff3cf7..5143fce6 100644 --- a/www/pages/content/firmendaten.tpl +++ b/www/pages/content/firmendaten.tpl @@ -1101,6 +1101,23 @@
+
+
+
+
+
+ {|Finanzbuchhaltung Einstellungen|} + + + + +
Buchungen erzeugen ab Datum:
+
+
+
+
+
+ - {|Stammdaten|}
{|Import|}
+ {|Daten|}
{|Import|}
{|Stammdaten|}
{|Export|}
{|Import|}
({|Online-Shop|})
@@ -17,7 +17,7 @@   - + [BELEGEIMPORTSTART][BELEGEIMPORTEND] diff --git a/www/pages/content/konten_edit.tpl b/www/pages/content/konten_edit.tpl index 7b8c8306..633dd500 100644 --- a/www/pages/content/konten_edit.tpl +++ b/www/pages/content/konten_edit.tpl @@ -18,37 +18,66 @@ {|Einstellungen|} - - + + + + + + - + - - + + - - + - - + - - + @@ -66,38 +95,71 @@ {|Bankverbindung (bei Typ Bank)|}
{|Bezeichnung|}: + {|Kurzbezeichnung|}: + + {|Muss eindeutig sein.|} +
+ {|Bezeichnung|}: + + +
{|Typ|}: + {|Typ|}: + + +
{|Projekt|}: + {|Projekt|}: + + +
{|Aktiv|}:{|Aktiv. Nicht mehr verwendete Konten können deaktiviert werden.|} + + {|Aktiv|}: + + {|Aktiv. Nicht mehr verwendete Konten können deaktiviert werden.|}
{|Keine E-Mail|}:{|Normalerweise wird beim Zahlungseingang eine Mail an den Kunden gesendet. Soll dies unterdrückt werden muss diese Option gesetzt werden.|} + + {|Keine E-Mail|}: + + {|Normalerweise wird beim Zahlungseingang eine Mail an den Kunden gesendet. Soll dies unterdrückt werden muss diese Option gesetzt werden.|}
{|Änderungen erlauben|}: + {|Änderungen erlauben|}: + +  {|Es dürfen nachträglich Kontobuchungen verändert werden|}
- - + + - - + + - - + + - - + + - - + + - - + + - - + +
{|Inhaber|}:{|Inhaber|}: + + + +
{|BIC|}: + {|BIC|}: + + + +
{|IBAN|}: + {|IBAN|}: + + + +
{|BLZ|}: + {|BLZ|}: + + + +
{|Konto|}: + {|Konto|}: + + + +
{|Gläubiger ID|}: + {|Gläubiger ID|}: + + + +
{|Lastschrift|}: + {|Lastschrift|}: + + +
@@ -113,9 +175,13 @@ {|DATEV|} - - + +
{|Konto|}:{|Konto|}: + + + +
@@ -123,6 +189,7 @@ +
@@ -338,20 +491,32 @@ {|Startwert für Konto|} - - + - - + + - - + +
{|Summieren|}: + {|Summieren|}: + + + +
{|Datum Saldo|}:{|Datum Saldo|}: + + + +
{|Betrag Saldo|}:{|Betrag Saldo|}: + + + +
@@ -359,8 +524,7 @@
- - + @@ -372,8 +536,11 @@ - - + +
+ + +
diff --git a/www/pages/content/kontoauszuege_edit.tpl b/www/pages/content/kontoauszuege_edit.tpl new file mode 100644 index 00000000..e8cab37b --- /dev/null +++ b/www/pages/content/kontoauszuege_edit.tpl @@ -0,0 +1,151 @@ +
+ + +
+ [MESSAGE] +
+ [FORMHANDLEREVENT] +
+
+
+
+
+ {|Kontoauszug Eintrag|} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ {|Konto|}: + + +
+ {|Datum|}: + + +
+ {|Betrag|}: + + +
+ {|Währung|}: + + +
+ {|Fertig|}: + + +
+ {|Datev_abgeschlossen|}: + + +
+ {|Buchungstext|}: + + +
+ {|Bearbeiter|}: + + +
+ {|Internebemerkung|}: + + +
+ {|Importfehler|}: + + +
+ {|Klaerfall|}: + + +
+ {|Klaergrund|}: + + +
+
+
+
+
+
+ +
+
+ +
+ diff --git a/www/pages/content/kontoauszuege_konto_list.tpl b/www/pages/content/kontoauszuege_konto_list.tpl new file mode 100644 index 00000000..77a933ac --- /dev/null +++ b/www/pages/content/kontoauszuege_konto_list.tpl @@ -0,0 +1,14 @@ +
+ +
+
+ [MESSAGE] + Kontoauszüge bitte über Importzentrale importieren. + [TAB1] +
+
+
+ + diff --git a/www/pages/content/kontoauszuege_list.tpl b/www/pages/content/kontoauszuege_list.tpl new file mode 100644 index 00000000..af67307b --- /dev/null +++ b/www/pages/content/kontoauszuege_list.tpl @@ -0,0 +1,46 @@ +
+ +
+
+ [MESSAGE] + [INFO] +
+
+
{|Filter|}
+
    + [STATUSFILTER] +
  • + + +
  • +
+
+
+ [TAB1] +
+ + Stapelverarbeitung + + + + +
 alle markieren 
+
+
+
+
+ + diff --git a/www/pages/content/rechnung_minidetail.tpl b/www/pages/content/rechnung_minidetail.tpl index 08392a68..38f8e543 100644 --- a/www/pages/content/rechnung_minidetail.tpl +++ b/www/pages/content/rechnung_minidetail.tpl @@ -44,7 +44,7 @@
-

Zahlungseingang

+

Buchungen

[ZAHLUNGEN]
@@ -69,15 +69,12 @@ [PDFARCHIV]
-
-

Deckungsbeitrag

-
- - -
Dieses Modul ist erst ab Version Professional verfügbar
- -
-
- - - + diff --git a/www/pages/fibu_buchungen.php b/www/pages/fibu_buchungen.php new file mode 100644 index 00000000..efef3461 --- /dev/null +++ b/www/pages/fibu_buchungen.php @@ -0,0 +1,1070 @@ +app = $app; + if ($intern) + return; + + $this->app->ActionHandlerInit($this); + $this->app->ActionHandler("list", "fibu_buchungen_list"); + $this->app->ActionHandler("create", "fibu_buchungen_edit"); // This automatically adds a "New" button + $this->app->ActionHandler("edit", "fibu_buchungen_edit"); + $this->app->ActionHandler("delete", "fibu_buchungen_delete"); + $this->app->ActionHandler("assoc", "fibu_buchungen_assoc"); + $this->app->ActionHandler("zuordnen", "fibu_buchungen_zuordnen"); + $this->app->ActionHandler("einzelzuordnen", "fibu_buchungen_einzelzuordnen"); + $this->app->DefaultActionHandler("list"); + $this->app->ActionHandlerListen($app); + + $this->app->erp->Headlines('Buchhaltung Buchungen'); + } + + public function Install() { + /* Fill out manually later */ + } + + function TableSearch(&$app, $name, $erlaubtevars) { + switch ($name) { + case "fibu_buchungen_list": + $allowed['fibu_buchungen_list'] = array('list'); + + $doc_typ = $this->app->User->GetParameter('fibu_buchungen_doc_typ'); + $doc_id = $this->app->User->GetParameter('fibu_buchungen_doc_id'); + + $heading = array('','','Buchungsart', 'Typ', 'Datum', 'Beleg', 'Betrag', 'Währung', 'Menü'); + $width = array('1%','1%','10%'); // Fill out manually later + + // columns that are aligned right (numbers etc) + $alignright = array(7); + $sumcol= array(7); + + $findcols = array('f.id','f.id','f.buchungsart', 'f.typ', 'f.datum', 'f.doc_info', 'f.betrag', 'f.waehrung','f.id'); + $searchsql = array('f.buchungsart', 'f.typ', 'f.datum', 'f.doc_typ', 'f.doc_info'); + + $defaultorder = 1; + $defaultorderdesc = 0; + + $dropnbox = "'' AS `open`, CONCAT('') AS `auswahl`"; + + $menu = "
" . "Conf->WFconf['defaulttheme']}/images/edit.svg\" border=\"0\">
"; + + if (!empty($doc_typ) && !empty($doc_id)) { + $where = "`doc_typ` = '$doc_typ' AND `doc_id` = $doc_id"; + } else{ + $where = "1"; + } + + $sql = "SELECT SQL_CALC_FOUND_ROWS + f.id, + $dropnbox, + ".$app->erp->FormatUCfirst('f.buchungsart').", + ".$app->erp->FormatUCfirst('f.typ').", + ".$app->erp->FormatDate('f.datum').", + CONCAT(".$app->erp->FormatUCfirst('f.doc_typ').",' ',f.doc_info), + ".$app->erp->FormatMenge('f.betrag',2).", + f.waehrung, + CONCAT(f.edit_module,'&id=',f.edit_id) + FROM fibu_buchungen_alle f"; + + $count = "SELECT count(*) FROM fibu_buchungen_alle WHERE $where"; +// $groupby = ""; + + break; + case "fibu_buchungen_salden": + $allowed['fibu_buchungen_salden'] = array('list'); + $heading = array( 'Typ','Anzahl', 'Saldo', 'Menü'); + $width = array( '83%', '1%', '1%', '1%'); + + $findcols = array('typ','','saldonum'); + $searchsql = array('typ','saldonum'); + + $defaultorder = 1; + $defaultorderdesc = 0; + + $dropnbox = "'' AS `open`, CONCAT('') AS `auswahl`"; + + $menu = "
" . "Conf->WFconf['defaulttheme']}/images/edit.svg\" border=\"0\">
"; + + $linkstart = '
'; + + $id = $app->Secure->GetGET('id'); + + $saldolink = array ( + ' 'typ'], + '">', + ['sql' => $this->app->erp->FormatMenge('SUM(COALESCE(saldonum,0))',2)], + '' + ); + + $sql = "SELECT + '', + ".$this->app->erp->FormatUCfirst('typ')." AS typ, + count(id) AS anzahl, + ".$this->app->erp->ConcatSQL($saldolink)." AS saldo, + typ + FROM + ( + SELECT + fb.typ, + fb.id, + fo.info, + SUM(betrag) AS saldonum + FROM + `fibu_buchungen_alle` fb + INNER JOIN fibu_objekte fo ON + fb.typ = fo.typ AND fb.id = fo.id + WHERE + fb.typ <> 'kontorahmen' + GROUP BY + fb.typ, + fb.id + ) salden + "; + + $where = "saldonum <> 0"; +// $count = "SELECT count(DISTINCT id) FROM fibu_buchungen_alle WHERE $where"; + $groupby = "GROUP BY typ"; + $orderby = "ORDER BY typ"; + + //echo($sql." WHERE ".$where." ".$groupby); + + break; + + case "fibu_buchungen_wahl": + $allowed['fibu_buchungen_wahl'] = array('list'); + $heading = array('', '', 'Datum', 'Typ', 'Info', 'Von','Nach', 'Menü'); + $width = array( '1%','1%','1%', '20%', '80%', '1%', '1%', '%1' ); + + $findcols = array('f.id','f.id','f.datum','f.typ','f.info','f.id','f.id','f.id'); + $searchsql = array('f.typ','f.info', 'f.datum', 'f.parent_typ', 'f.parent_info'); + + $defaultorder = 1; + $defaultorderdesc = 0; + + $dropnbox = "'' AS `open`, CONCAT('') AS `auswahl`"; + + $menu = "
" . "Conf->WFconf['defaulttheme']}/images/edit.svg\" border=\"0\">
"; + $menu = null; + + $linkstart = '
'; + + $id = $app->Secure->GetGET('id'); + + $sql = "SELECT SQL_CALC_FOUND_ROWS + f.id, + $dropnbox, + ".$app->erp->FormatDate('f.datum').", + ".$app->erp->FormatUCfirst('f.typ').", + f.info, + CONCAT('".$linkstart."','direction=von&id=".$id."&doc_typ=',f.typ,'&doc_id=',f.id,'".$linkend."'), + CONCAT('".$linkstart."','direction=nach&id=".$id."&doc_typ=',f.typ,'&doc_id=',f.id,'".$linkend."'), + f.id, + f.id + FROM fibu_objekte f + "; + + $where = "1"; + $count = "SELECT count(id) FROM fibu_objekte"; +// $groupby = ""; + + break; + case 'fibu_buchungen_zuordnen': + + $allowed['fibu_buchungen_zuordnung'] = array('list'); + $heading = array('','','Datum','Typ', 'Info', 'Betrag', 'Währung', 'Buchungsbetrag','Vorschlag', 'Menü'); + $width = array( ); + + $findcols = array('id','auswahl','datum','typ','objektlink','saldo','waehrung','saldo','vorschlag','doc'); + $searchsql = array('objektlink','vorschlag'); + + $defaultorder = 1; + $defaultorderdesc = 0; + + $menu = "
" . "Conf->WFconf['defaulttheme']}/images/forward.svg\" border=\"0\">
"; + + $linkstart = '
'; + + $typ = $this->app->User->GetParameter('fibu_buchungen_doc_typ'); + + $objektlink = array ( + ' 'fb.typ'], + '&id=', + ['sql' => 'fb.id'], + '">', + ['sql' => 'fo.info'], + '' + ); + + $check_sql = "(fo.info <> '' AND salden.saldonum = -SUM(fbd.betrag))"; + + $auswahl = array ( + ' 'salden.typ'], + '_', + ['sql' => 'salden.id'], + '" hidden/>', + ' "if(".$check_sql.",'checked','')"], + ' />' + ); + + $vorschlaege = array ( + ' 'COALESCE(fo.typ,\'\')'], + '&id=', + ['sql' => 'COALESCE(fo.id,\'\')'], + '\">', + ['sql' => $this->app->erp->FormatUCfirst('COALESCE(fo.typ,\'\')')], + ' ', + ['sql' => 'COALESCE(fo.info,\'\')'], + ' ', + ['sql' => "if (SUM(fbd.betrag) IS NULL,'',CONCAT('(Saldo ',".$this->app->erp->FormatMenge('SUM(fbd.betrag)',2).",', Diff. ',".$this->app->erp->FormatMenge('SUM(fbd.betrag)+saldonum',2).",', ',".$this->app->erp->FormatMenge('(SUM(fbd.betrag)+saldonum)/SUM(fbd.betrag)*100',0).",'%)'))"], + ' ', + '' + ); + +// ['sql' => "if (SUM(fbd.betrag) IS NULL,'',CONCAT('(Saldo ',".$this->app->erp->FormatMenge('SUM(fbd.betrag)',2).",', Diff. ',".$this->app->erp->FormatMenge('SUM(fbd.betrag)+saldonum',2).",')'))"], + + $werte = array ( + '' + ); + + $waehrungen = array ( + ['sql' => 'salden.waehrung'], + '' + ); + + $doc = array ( + ['sql' => 'salden.typ'], + '_', + ['sql' => 'salden.id'], + ); + + $sql = "SELECT + '' AS dummy, + '' AS dummy2, + auswahl, + datum, + ".$this->app->erp->FormatUCfirst("typ").", + objektlink, + saldo, + waehrung, + wert, + vorschlag, + doc, + doc_id, + doc_saldo, + checked + FROM + ( + SELECT + '' AS dummy, + ".$this->app->erp->ConcatSQL($auswahl)." AS auswahl, + salden.datum, + salden.typ, + salden.id, + salden.info, + salden.saldo, + salden.objektlink, + salden.saldonum, + ".$this->app->erp->ConcatSQL($vorschlaege)." AS vorschlag, + ".$this->app->erp->ConcatSQL($werte)." AS wert, + ".$this->app->erp->ConcatSQL($waehrungen)." AS waehrung, + fo.typ AS doc_typ, + fo.id AS doc_id, + fo.info AS doc_info, + SUM(fbd.betrag) as doc_saldo, + if(".$check_sql.",'1','0') AS checked, + ".$this->app->erp->ConcatSQL($doc)." AS doc + FROM + ( + SELECT + ".$this->app->erp->FormatDate(" fb.datum ")." AS datum, + fb.typ, + fb.id, + fo.info, + ".$this->app->erp->ConcatSQL($objektlink)." AS objektlink, + ".$this->app->erp->FormatMenge('SUM(COALESCE(fb.betrag,0))',2)." AS saldo, + SUM(betrag) AS saldonum, + fb.waehrung + FROM + `fibu_buchungen_alle` fb + INNER JOIN fibu_objekte fo ON + fb.typ = fo.typ AND fb.id = fo.id + WHERE + ( + fb.typ = '".$typ."' OR '".$typ."' = '' + ) + GROUP BY + fb.typ, + fb.id, + fb.waehrung + ) salden + LEFT JOIN( + SELECT + fo.typ, + fo.id, + fo.info, + SUM(fob.betrag) as doc_saldo + FROM + fibu_objekte fo + LEFT JOIN + fibu_buchungen_alle fob + ON + fo.typ = fob.typ AND fo.id = fob.id + WHERE fo.is_beleg = 1 + GROUP BY + fo.typ, + fo.id, + fo.info + ) AS fo + ON + salden.info LIKE CONCAT('%', fo.info, '%') AND salden.typ <> fo.typ AND fo.info <> '' + LEFT JOIN + fibu_buchungen_alle fbd + ON + fbd.typ = fo.typ AND fbd.id = fo.id + WHERE + salden.saldonum <> 0 + GROUP BY + salden.typ, + salden.id, + fo.typ, + fo.id + ) AS erg + "; + + $where = "1"; + + // Toggle filters + $this->app->Tpl->Add('JQUERYREADY', "$('#vorschlagfilter').click( function() { fnFilterColumn1( 0 ); } );"); + $this->app->Tpl->Add('JQUERYREADY', "$('#checkedfilter').click( function() { fnFilterColumn2( 0 ); } );"); + + for ($r = 1;$r <= 4;$r++) { + $this->app->Tpl->Add('JAVASCRIPT', ' + function fnFilterColumn' . $r . ' ( i ) + { + if(oMoreData' . $r . $name . '==1) + oMoreData' . $r . $name . ' = 0; + else + oMoreData' . $r . $name . ' = 1; + + $(\'#' . $name . '\').dataTable().fnFilter( + \'\', + i, + 0,0 + ); + } + '); + } + + + $more_data1 = $this->app->Secure->GetGET("more_data1"); + if ($more_data1 == 1) { + $where .= " AND doc_id IS NOT NULL"; + } else { + } + + $more_data2 = $this->app->Secure->GetGET("more_data2"); + if ($more_data2 == 1) { + $where .= " AND checked = 1"; + } else { + } + + // END Toggle filters + + +// $count = "SELECT count(DISTINCT id) FROM fibu_buchungen_alle WHERE $where"; + $groupby = "GROUP BY typ, id"; + +//echo($sql." WHERE ".$where." ".$groupby); + + + break; + case 'fibu_buchungen_einzelzuordnen': + + $allowed['fibu_buchungen_einzelzuordnen'] = array('list'); + $heading = array('','Datum','Typ', 'Info', 'Übergeordnet', 'Saldo','Währung','Berechnet','Buchungsbetrag', 'Menü'); + $width = array( ); + + $findcols = array('fo.id','fo.datum','fo.typ','fo.info','fo.parent_info','fba.betrag','waehrung','fba.betrag','fba.betrag','fo.id'); + $searchsql = array('fo.typ','fo.info','fo.parent_info'); + + $defaultorder = 1; + $defaultorderdesc = 0; + +// $menu = "
" . "Conf->WFconf['defaulttheme']}/images/edit.svg\" border=\"0\">
"; + + $linkstart = '
'; + + $doc_typ = $this->app->User->GetParameter('fibu_buchungen_doc_typ'); + $doc_id = $this->app->User->GetParameter('fibu_buchungen_doc_id'); + $abschlag = $this->app->User->GetParameter('fibu_buchungen_abschlag'); + if (!is_numeric($abschlag)) { + $abschlag = 0; + } + + $multifilter = $this->app->User->GetParameter('fibu_buchungen_multifilter'); + + if (!empty($multifilter)) { + $multifilter = $this->app->DB->real_escape_string($multifilter); + $multifilter = str_replace(',',' ',$multifilter); + $multifilter = str_replace(';',' ',$multifilter); + $multifilter = str_replace('\r',' ',$multifilter); + $multifilter = str_replace('\n',' ',$multifilter); + $multifilter_array = explode(' ',$multifilter." "); + } + + $auswahl = array ( + ' 'fo.typ'], + '_', + ['sql' => 'fo.id'], + '" hidden/>', + '' + ); + + $objektlink = array ( + ' 'fo.typ'], + '&id=', + ['sql' => 'fo.id'], + '">', + ['sql' => 'fo.info'], + '' + ); + + $parentlink = array ( + ' 'fo.parent_typ'], + '&id=', + ['sql' => 'fo.parent_id'], + '">', + ['sql' => 'fo.parent_info'], + '' + ); + + $calculated = 'CONVERT(COALESCE(-SUM(fba.betrag*(1-('.$abschlag.'/100))),0),DECIMAL(12,2))'; + + $werte = array ( + '' + ); + + $sql = "SELECT + '', + ".$this->app->erp->ConcatSQL($auswahl)." AS auswahl, + ".$this->app->erp->FormatDate("fo.datum")." as datum, + ".$this->app->erp->FormatUCfirst("fo.typ")." as typ, + ".$this->app->erp->ConcatSQL($objektlink)." AS info, + ".$this->app->erp->ConcatSQL($parentlink)." AS parent_info, + ".$this->app->erp->FormatMenge('SUM(fba.betrag)',2)." as saldonum, + waehrung, + ".$this->app->erp->FormatMenge($calculated,2)." as calculated, + ".$this->app->erp->ConcatSQL($werte)." AS werte + FROM + fibu_objekte fo + LEFT JOIN + fibu_buchungen_alle fba + ON + fba.typ = fo.typ AND fba.id = fo.id + "; + + $where = "fo.typ <> '".$doc_typ."'"; + + if (!empty($multifilter_array)) { + $where .= " AND fo.info IN ('".implode("','",$multifilter_array)."')"; + } + +// $count = "SELECT count(DISTINCT id) FROM fibu_buchungen_alle WHERE $where"; + + $groupby = "GROUP BY fo.id, fo.typ"; + +//echo($sql." WHERE ".$where." ".$groupby); + + $sumcol= array(6,8); + + break; + } + + $erg = false; + + foreach ($erlaubtevars as $k => $v) { + if (isset($$v)) { + $erg[$v] = $$v; + } + } + return $erg; + } + + function fibu_rebuild_tables() { + $sql = "DROP TABLE IF EXISTS `fibu_buchungen_alle`"; + $this->app->DB->Update($sql); + $sql = "DROP VIEW IF EXISTS `fibu_buchungen_alle`"; + $this->app->DB->Update($sql); + $sql = "CREATE TABLE `fibu_buchungen_alle` AS SELECT * FROM `fibu_buchungen_alle_view`"; + $this->app->DB->Update($sql); + + $sql = "DROP TABLE IF EXISTS `fibu_objekte`"; + $this->app->DB->Update($sql); + $sql = "DROP VIEW IF EXISTS `fibu_objekte`"; + $this->app->DB->Update($sql); + $sql = "CREATE TABLE `fibu_objekte` AS SELECT * FROM `fibu_objekte_view`"; + $this->app->DB->Update($sql); + } + + function fibu_buchungen_list() { + $this->app->erp->MenuEintrag("index.php?module=fibu_buchungen&action=list", "Übersicht"); +// $this->app->erp->MenuEintrag("index.php?module=fibu_buchungen&action=create", "Neu anlegen"); + + $startdatum = $this->app->erp->Firmendaten('fibu_buchungen_startdatum'); + + if (empty($startdatum)) { + $msg .= '
Startdatum ("Buchungen erzeugen ab Datum") in den Firmendaten nicht gesetzt.
'; + } + + $submit = $this->app->Secure->GetPOST('submit'); + if ($submit == 'neuberechnen') { + $this->fibu_rebuild_tables(); + $msg .= "
Buchungen wurden neu berechnet.
"; + } + + // For transfer to tablesearch + $doc_typ = $this->app->Secure->GetGET('doc_typ'); + $doc_id = $this->app->Secure->GetGET('doc_id'); + + $this->app->User->SetParameter('fibu_buchungen_doc_typ', $doc_typ); + $this->app->User->SetParameter('fibu_buchungen_doc_id', $doc_id); + + $this->app->YUI->TableSearch('TAB1', 'fibu_buchungen_salden', "show", "", "", basename(__FILE__), __CLASS__); + $this->app->YUI->TableSearch('TAB2', 'fibu_buchungen_list', "show", "", "", basename(__FILE__), __CLASS__); + + if (!empty($msg)) { + $this->app->Tpl->Set('MESSAGE', $msg); + } + + $this->app->Tpl->Parse('PAGE', "fibu_buchungen_list.tpl"); + } + + public function fibu_buchungen_delete() { + $id = (int) $this->app->Secure->GetGET('id'); + +// $this->app->DB->Delete("DELETE FROM `fibu_buchungen` WHERE `id` = '{$id}'"); +// $this->app->Tpl->Set('MESSAGE', "
Der Eintrag wurde gelöscht.
"); + + $this->fibu_buchungen_list(); + } + + /* + * Edit fibu_buchungen item + */ + + function fibu_buchungen_edit() { + $id = $this->app->Secure->GetGET('id'); + + // Check if other users are editing this id + if($this->app->erp->DisableModul('artikel',$id)) + { + return; + } + + // Assoc? + $direction = $this->app->Secure->GetGET('direction'); + $doc_typ = $this->app->Secure->GetGET('doc_typ'); + $doc_id = $this->app->Secure->GetGET('doc_id'); + if (in_array($direction,array('von','nach'))) { + $sql = "SELECT typ, id FROM fibu_objekte WHERE typ = '".$doc_typ."' AND id = '".$doc_id."'"; + + $result = $this->app->DB->SelectArr($sql); + + if (!empty($result)) { + $sql = "UPDATE fibu_buchungen SET ".$direction."_typ = '".$doc_typ."', ".$direction."_id = '".$doc_id."' WHERE id = '".$id."'"; + $this->app->DB->Update($sql); + } + } + + $this->app->Tpl->Set('ID', $id); + + $this->app->erp->MenuEintrag("index.php?module=fibu_buchungen&action=edit&id=$id", "Details"); + $this->app->erp->MenuEintrag("index.php?module=fibu_buchungen&action=list#tabs-2", "Zurück zur Übersicht"); + $id = $this->app->Secure->GetGET('id'); + $input = $this->GetInput(); + $submit = $this->app->Secure->GetPOST('submit'); + + if (empty($id)) { + $this->fibu_buchungen_list(); + return; + } + + if ($submit != '') + { + + // Write to database + + // Add checks here + $input['benutzer'] = $this->app->User->GetId(); + $input['zeit'] = date("Y-m-d H:i"); + $input['betrag'] = $this->app->erp->ReplaceBetrag(true,$input['betrag']); + $input['internebemerkung'] = $this->app->DB->real_escape_string($input['internebemerkung']); + + if (empty($input['datum'])) { + $input['datum'] = date("Y-m-d"); + } else { + $input['datum'] = $this->app->erp->ReplaceDatum(true,$input['datum'],true); + } + + $columns = "id, "; + $values = "$id, "; + $update = ""; + + $fix = ""; + + foreach ($input as $key => $value) { + $columns = $columns.$fix.$key; + $values = $values.$fix."'".$value."'"; + $update = $update.$fix.$key." = '$value'"; + + $fix = ", "; + } + + $sql = "INSERT INTO fibu_buchungen (".$columns.") VALUES (".$values.") ON DUPLICATE KEY UPDATE ".$update; + + $this->app->DB->Update($sql); + + if ($id == 'NULL') { + $msg = $this->app->erp->base64_url_encode("
Das Element wurde erfolgreich angelegt.
"); + header("Location: index.php?module=fibu_buchungen&action=list&msg=$msg"); + } else { + $this->app->Tpl->Set('MESSAGE', "
Die Einstellungen wurden erfolgreich übernommen.
"); + } + $this->fibu_rebuild_tables(); + } + + + // Load values again from database + $dropnbox = "'' AS `open`, CONCAT('') AS `auswahl`"; + + $sql = " + SELECT SQL_CALC_FOUND_ROWS f.id, + $dropnbox, + f.von_typ, + f.von_id, + f.nach_typ, + f.nach_id, + ".$this->app->erp->FormatMenge('f.betrag',2)." AS betrag, + f.waehrung, + adresse.name as benutzer, + ".$this->app->erp->FormatDateTime('f.zeit','zeit').", + f.internebemerkung, + f.id, + ".$this->app->erp->FormatDate('f.datum','datum').", + fvon.info AS von_info, + fnach.info AS nach_info + FROM + fibu_buchungen f"." + LEFT JOIN + fibu_objekte fvon + ON + f.von_typ = fvon.typ AND f.von_id = fvon.id + LEFT JOIN + fibu_objekte fnach + ON + f.nach_typ = fnach.typ AND f.nach_id = fnach.id + LEFT JOIN + user + ON + f.benutzer = user.id + LEFT JOIN + adresse + ON + user.adresse = adresse.id + WHERE + f.id=$id + + "; + + $result = $this->app->DB->SelectArr($sql); + + $this->app->erp->ReplaceDatum(false,$result[0]['zeit'],false); + + $result[0]['internebemerkung'] = htmlentities($result[0]['internebemerkung']); + + foreach ($result[0] as $key => $value) { + $this->app->Tpl->Set(strtoupper($key), $value); + } + + /* + * Add displayed items later + * + + $this->app->Tpl->Add('KURZUEBERSCHRIFT2', $email); + $this->app->Tpl->Add('EMAIL', $email); + $this->app->Tpl->Add('ANGEZEIGTERNAME', $angezeigtername); + */ + + $this->app->Tpl->Set('VON',ucfirst($result[0]['von_typ'])." ".$result[0]['von_info']); + $this->app->Tpl->Set('NACH',ucfirst($result[0]['nach_typ'])." ".$result[0]['nach_info']); + + $this->app->Tpl->Set('WAEHRUNG',$this->app->erp->getSelectAsso($this->app->erp->GetWaehrung(), $result[0]['waehrung_von'])); + + $this->app->YUI->DatePicker("datum"); + $this->app->Tpl->Set('DATUM',$this->app->erp->ReplaceDatum(false,$result[0]['datum'],true)); + + $this->app->YUI->TableSearch('TAB1', 'fibu_buchungen_wahl', "show", "", "", basename(__FILE__), __CLASS__); + + $this->app->Tpl->Parse('PAGE', "fibu_buchungen_edit.tpl"); + } + + /** + * Get all paramters from html form and save into $input + */ + public function GetInput(): array { + $input = array(); + //$input['EMAIL'] = $this->app->Secure->GetPOST('email'); + + $input['von_typ'] = $this->app->Secure->GetPOST('von_typ'); + $input['von_id'] = $this->app->Secure->GetPOST('von_id'); + $input['nach_typ'] = $this->app->Secure->GetPOST('nach_typ'); + $input['nach_id'] = $this->app->Secure->GetPOST('nach_id'); + $input['betrag'] = $this->app->Secure->GetPOST('betrag'); + $input['waehrung'] = $this->app->Secure->GetPOST('waehrung'); + $input['benutzer'] = $this->app->Secure->GetPOST('benutzer'); + $input['datum'] = $this->app->Secure->GetPOST('datum'); + $input['internebemerkung'] = $this->app->Secure->GetPOST('internebemerkung'); + + + return $input; + } + + /* + * Set all fields in the page corresponding to $input + */ + function SetInput($input) { + // $this->app->Tpl->Set('EMAIL', $input['email']); + + $this->app->Tpl->Set('VON_TYP', $input['von_typ']); + $this->app->Tpl->Set('VON_ID', $input['von_id']); + $this->app->Tpl->Set('NACH_TYP', $input['nach_typ']); + $this->app->Tpl->Set('NACH_ID', $input['nach_id']); + $this->app->Tpl->Set('BETRAG', $input['betrag']); + $this->app->Tpl->Set('WAEHRUNG', $input['waehrung']); + $this->app->Tpl->Set('BENUTZER', $input['benutzer']); + $this->app->Tpl->Set('ZEIT', $input['zeit']); + $this->app->Tpl->Set('INTERNEBEMERKUNG', $input['internebemerkung']); + + } + + + function fibu_buchungen_buchen(string $von_typ, int $von_id, string $nach_typ, int $nach_id, $betrag, string $waehrung, $datum, string $internebemerkung) { + $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `datum`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('".$von_typ."','".$von_id."','".$nach_typ."', '".$nach_id."', '".$datum."', '".$betrag."', '".$waehrung."', '".$this->app->User->GetID()."','".date("Y-m-d H:i")."', '".$internebemerkung."')"; + $this->app->DB->Insert($sql); + } + + function fibu_buchungen_zuordnen() { + + $submit = $this->app->Secure->GetPOST('submit'); + if ($submit == 'neuberechnen') { + $this->fibu_rebuild_tables(); + + $msg = "
Buchungen wurden neu berechnet.
"; + } + + if ($submit == 'BUCHEN') { + + // Process multi action + $ids = $this->app->Secure->GetPOST('ids'); + $werte = $this->app->Secure->GetPOST('werte'); + $waehrungen = $this->app->Secure->GetPOST('waehrungen'); + $auswahl = $this->app->Secure->GetPOST('auswahl'); + $vorschlaege = $this->app->Secure->GetPOST('vorschlaege'); + $aktion = $this->app->Secure->GetPOST('sel_aktion'); + $sachkonto = $this->app->Secure->GetPOST('sachkonto'); + + $account_id = null; + if (!empty($sachkonto)) { + $sachkonto_kennung = explode(' ',$sachkonto)[0]; + $account_id = $this->app->DB->SelectArr("SELECT id from kontorahmen WHERE sachkonto = '".$sachkonto_kennung."'")[0]['id']; + } + + if (!empty($auswahl)) { + foreach ($ids as $id) { + + $key_ids = array_search($id,$ids); + $key_auswahl = array_search($id,$auswahl); + + if ($key_auswahl !== false) { + + $von = explode('_',$id); + $von_typ = strtolower($von[0]); + $von_id = (int) $von[1]; + + $betrag = $werte[$key_ids]; + + $waehrung = $waehrungen[$key_ids]; + + $datum = $this->app->DB->SelectArr("SELECT datum FROM fibu_buchungen_alle WHERE typ='".$von_typ."' AND id = '".$von_id."'")[0]['datum']; // Get relevant date of source doc + + $doc_id = null; + if ($vorschlaege[$key_ids] != '_') { + $doc = $vorschlaege[$key_ids]; + $doc = explode('_',$doc); + $doc_typ = strtolower($doc[0]); + $doc_id = (int) $doc[1]; + } + + switch ($aktion) { + case 'vorschlag': + if ($doc_id) { +// $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `datum`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('".$von_typ."','".$von_id."','".$doc_typ."', '".$doc_id."', '".$datum."', '".-$betrag."', '".$waehrung."', '".$this->app->User->GetID()."','".date("Y-m-d H:i")."', '')"; +// echo($sql."\n"); +// $this->app->DB->Insert($sql); + $this->fibu_buchungen_buchen($von_typ, $von_id, $doc_typ, $doc_id, -$betrag, $waehrung, $datum, ''); + } + break; + case 'sachkonto': +// $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `datum`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('".$von_typ."','".$von_id."','kontorahmen', '".$account_id."', '".$datum."', '".-$betrag."', '".$waehrung."', '".$this->app->User->GetID()."','".date("Y-m-d H:i")."', '')"; +// echo($sql."\n"); +// $this->app->DB->Insert($sql); + $this->fibu_buchungen_buchen($von_typ, $von_id, 'kontorahmen', $account_id, -$betrag, $waehrung, $datum, ''); + break; + case 'vorschlag_diff_sachkonto': + if ($doc_id) { + // Retrieve counter doc saldo + $doc_saldo = $this->app->erp->GetSaldoDokument($doc_id, $doc_typ); +// $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `datum`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('".$von_typ."','".$von_id."','".$doc_typ."', '".$doc_id."', '".$datum."', '".-$betrag."', '".$waehrung."', '".$this->app->User->GetID()."','".date("Y-m-d H:i")."', '')"; +// echo($sql."\n"); +// $this->app->DB->Insert($sql); + $this->fibu_buchungen_buchen($von_typ, $von_id, $doc_typ, $doc_id, -$betrag, $waehrung, $datum, ''); + } + + if (!empty($doc_saldo) && ($doc_saldo['waehrung'] == $waehrung) && ($account_id !== null)) { + $diff = $betrag+$doc_saldo['betrag']; +// $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `datum`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('".$doc_typ."','".$doc_id."','kontorahmen', '".$account_id."', '".$datum."', '".-$diff."', '".$waehrung."', '".$this->app->User->GetID()."','".date("Y-m-d H:i")."', '')"; +// echo($sql."\n"); +// $this->app->DB->Insert($sql); + $this->fibu_buchungen_buchen($doc_typ, $doc_id, 'kontorahmen', $account_id, -$diff, $waehrung, $datum, ''); + } else { + $msg .= "
Gegensaldo wurde nicht gebucht. ".count($doc_saldo)." ".$doc_saldo[0]['waehrung']."
"; + } + break; + } + } // auswahl + } // foreach + } else { // auswahl + $msg .= "
Keine Posten ausgewählt.
"; + } + } // submit + + $this->fibu_rebuild_tables(); + + // For transfer to tablesearch + $doc_typ = $this->app->Secure->GetGET('typ'); + $this->app->User->SetParameter('fibu_buchungen_doc_typ', $doc_typ); + + $this->app->erp->Headlines('Buchhaltung','zuordnen '.strtoupper($doc_typ)); + + $this->app->YUI->TableSearch('TAB1', 'fibu_buchungen_zuordnen', "show", "", "", basename(__FILE__), __CLASS__); + $this->app->YUI->TableSearch('TAB2', 'fibu_buchungen_list', "show", "", "", basename(__FILE__), __CLASS__); + + if (!empty($msg)) { + $this->app->Tpl->Set('MESSAGE', $msg); + } + + $this->app->YUI->AutoComplete('sachkonto', 'sachkonto'); + + $this->app->erp->MenuEintrag("index.php?module=fibu_buchungen&action=list", "Übersicht"); + $this->app->erp->MenuEintrag("index.php?module=fibu_buchungen&action=zuordnen&typ=".$doc_typ, "Einzelsalden"); + + $this->app->Tpl->Parse('PAGE', "fibu_buchungen_zuordnen.tpl"); + } + + function fibu_buchungen_einzelzuordnen() { + + $submit = $this->app->Secure->GetPOST('submit'); + if ($submit == 'neuberechnen') { + $this->fibu_rebuild_tables(); + + $msg = "
Buchungen wurden neu berechnet.
"; + } + + // For transfer to tablesearch + $von = $this->app->Secure->GetGET('doc'); + $von = explode('_',$von); + $von_typ = strtolower($von[0]); + $von_id = (int) $von[1]; + $this->app->User->SetParameter('fibu_buchungen_doc_typ', $von_typ); + $this->app->User->SetParameter('fibu_buchungen_doc_id', $von_id); + $aktion = $this->app->Secure->GetPOST('sel_aktion'); + $sachkonto = $this->app->Secure->GetPOST('sachkonto'); + $abschlag = $this->app->Secure->GetPOST('abschlag'); + $this->app->User->SetParameter('fibu_buchungen_abschlag', $abschlag); + $multifilter = $this->app->Secure->GetPOST('multifilter'); + $this->app->User->SetParameter('fibu_buchungen_multifilter', $multifilter); + + $account_id = null; + if (!empty($sachkonto)) { + $sachkonto_kennung = explode(' ',$sachkonto)[0]; + $account_id = $this->app->DB->SelectArr("SELECT id from kontorahmen WHERE sachkonto = '".$sachkonto_kennung."'")[0]['id']; + } + + $this->app->erp->MenuEintrag("index.php?module=fibu_buchungen&action=zuordnen&typ=".$von_typ, "Zurück"); + + $sql = "SELECT doc_typ, doc_id, doc_info, waehrung, sum(betrag) as saldonum,".$this->app->erp->FormatMenge("sum(betrag)",2)." as saldo FROM fibu_buchungen_alle WHERE typ = '".$von_typ."' AND id = '".$von_id."'"; + $von_row = $this->app->DB->SelectArr($sql)[0]; + $von_info = $von_row['doc_info']; + $von_saldonum = $von_row['saldonum']; + $von_saldo = $von_row['saldo']; + $von_waehrung = $von_row['waehrung']; + + $datum = $this->app->DB->SelectArr("SELECT datum FROM fibu_buchungen_alle WHERE typ='".$von_typ."' AND id = '".$von_id."'")[0]['datum']; // Get relevant date of source doc + + if ($submit == 'BUCHEN') { + // Process multi action + $count_success = 0; + $ids = $this->app->Secure->GetPOST('ids'); + $werte = $this->app->Secure->GetPOST('werte'); + $auswahl = $this->app->Secure->GetPOST('auswahl'); + + if (!empty($auswahl)) { + $gesamtnum = 0; + foreach ($ids as $id) { + $key_ids = array_search($id,$ids); + $key_auswahl = array_search($id,$auswahl); + + if ($key_auswahl !== false) { + $gesamtnum += $werte[$key_ids]; + } + } + $override = $this->app->Secure->GetPOST('override'); + $diff = $gesamtnum-$von_saldonum; + + if ( + ($von_saldonum < 0 && ($gesamtnum < $von_saldonum)) || + ($von_saldonum > 0 && ($gesamtnum > $von_saldonum)) + ) { + $msg .= "
Buchungssumme ".$this->app->erp->EUR($gesamtnum)." übersteigt Saldosumme ".$this->app->erp->EUR($von_saldonum).". (Abweichung ".$this->app->erp->EUR((float) $gesamtnum - (float) $von_saldonum).")
"; + } + else if ($diff != 0 && !$override) { + $msg .= "
Buchungssumme ".$this->app->erp->EUR($gesamtnum)." entspricht nicht Saldosumme ".$this->app->erp->EUR($von_saldonum).". (Abweichung ".$this->app->erp->EUR((float) $gesamtnum - (float) $von_saldonum).")
"; + } else { + foreach ($ids as $id) { + $key_ids = array_search($id,$ids); + $key_auswahl = array_search($id,$auswahl); + + if ($key_auswahl !== false) { + $doc = explode('_',$id); + $doc_typ = strtolower($doc[0]); + $doc_id = (int) $doc[1]; + + $betrag = $werte[$key_ids]; + + switch ($aktion) { + case 'buchen': + if ($betrag != 0) { +// $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `datum`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('".$von_typ."','".$von_id."','".$doc_typ."', '".$doc_id."', '".$datum."', '".-$betrag."', '".$von_waehrung."', '".$this->app->User->GetID()."','".date("Y-m-d H:i")."', '')"; +// echo($sql."\n"); +// $this->app->DB->Insert($sql); + $this->fibu_buchungen_buchen($von_typ, $von_id, $doc_typ, $doc_id, -$betrag, $von_waehrung, $datum, ''); + $count_success++; + } + break; + case 'buchen_diff_sachkonto': + $doc_saldo = $this->app->erp->GetSaldoDokument($doc_id, $doc_typ); + if ($betrag != 0) { +// $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `datum`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('".$von_typ."','".$von_id."','".$doc_typ."', '".$doc_id."', '".$datum."', '".-$betrag."', '".$von_waehrung."', '".$this->app->User->GetID()."','".date("Y-m-d H:i")."', '')"; +// echo($sql."\n"); +// $this->app->DB->Insert($sql); + $this->fibu_buchungen_buchen($von_typ, $von_id, $doc_typ, $doc_id, -$betrag, $von_waehrung, $datum, ''); + $count_success++; + } + + if (!empty($doc_saldo) && ($doc_saldo['waehrung'] == $von_waehrung) && ($account_id !== null)) { + $diff = $betrag+$doc_saldo['betrag']; +// $sql = "INSERT INTO `fibu_buchungen` (`von_typ`, `von_id`, `nach_typ`, `nach_id`, `datum`, `betrag`, `waehrung`, `benutzer`, `zeit`, `internebemerkung`) VALUES ('kontorahmen','".$account_id."','".$doc_typ."', '".$doc_id."', '".$datum."', '".$diff."', '".$von_waehrung."', '".$this->app->User->GetID()."','".date("Y-m-d H:i")."', '')"; +// echo($sql."\n"); +// $this->app->DB->Insert($sql); + $this->fibu_buchungen_buchen($doc_typ, $doc_id, 'kontorahmen', $account_id, -$diff, $von_waehrung, $datum, ''); + } else { + $msg .= "
Gegensaldo wurde nicht gebucht.
"; + } + + break; + } + } + } + } + $msg .= "
".$count_success." Buchung".(($count_success===1)?'':'en')." durchgeführt.
"; + $this->fibu_rebuild_tables(); + } else { + $msg .= "
Keine Posten ausgewählt.
"; + } + } + + // Reload after booking + $sql = "SELECT fo.info, fb.waehrung, sum(fb.betrag) as saldonum,".$this->app->erp->FormatMenge("sum(fb.betrag)",2)." as saldo FROM fibu_buchungen_alle fb INNER JOIN fibu_objekte fo ON fb.typ = fo.typ AND fb.id = fo.id WHERE fb.typ = '".$von_typ."' AND fb.id = '".$von_id."'"; + $row = $this->app->DB->SelectArr($sql)[0]; + + $saldonum = $row['saldonum']; + $saldo = $row['saldo']; + $waehrung = $row['waehrung']; + $info = $row['info']; + + $this->app->Tpl->Set('DOC_ZUORDNUNG', ucfirst($von_typ)." ".$info); + $this->app->Tpl->Set('DOC_SALDO',$saldo." ".$waehrung); + $this->app->Tpl->Set('ABSCHLAG',$abschlag); + + $this->app->Tpl->Set('MULTIFILTER',str_replace(array('\r\n', '\r', '\n'), ", ", $multifilter)); + + $this->app->erp->Headlines('Buchhaltung','Einzelzuordnung '.strtoupper($von_typ)); + + $this->app->YUI->TableSearch('TAB1', 'fibu_buchungen_einzelzuordnen', "show", "", "", basename(__FILE__), __CLASS__); + + if (!empty($msg)) { + $this->app->Tpl->Set('MESSAGE', $msg); + } + + $this->app->YUI->AutoComplete('sachkonto', 'sachkonto'); + + $this->app->Tpl->Parse('PAGE', "fibu_buchungen_einzelzuordnen.tpl"); + } +} diff --git a/www/pages/firmendaten.php b/www/pages/firmendaten.php index 60b1a259..a526ee8c 100644 --- a/www/pages/firmendaten.php +++ b/www/pages/firmendaten.php @@ -1043,7 +1043,7 @@ class Firmendaten { 'arbeitsnachweis_header','arbeitsnachweis_footer','provisionsgutschrift_header','provisionsgutschrift_footer','proformarechnung_header','proformarechnung_footer','eu_lieferung_vermerk','export_lieferung_vermerk' ,'wareneingang_kamera_waage','layout_iconbar','passwort','host','port','mailssl','signatur','email','absendername','bcc1','bcc2','bcc3' ,'firmenfarbe','name','strasse','plz','ort','steuernummer','projekt','steuer_positionen_export','tabsnavigationfarbe','tabsnavigationfarbeschrift' - ,"buchhaltung_berater","buchhaltung_mandant","buchhaltung_wj_beginn","buchhaltung_sachkontenlaenge" + ,"buchhaltung_berater","buchhaltung_mandant","buchhaltung_wj_beginn","buchhaltung_sachkontenlaenge", "fibu_buchungen_startdatum" ); if(isset($sql2a)){ @@ -1379,6 +1379,10 @@ class Firmendaten { } $this->app->YUI->AutoComplete('steuersatz_normal','steuersatz',1); $this->app->YUI->AutoComplete('steuersatz_ermaessigt','steuersatz',1); + + + $this->app->YUI->DatePicker('fibu_buchungen_startdatum'); + $this->app->Tpl->Parse('PAGE','firmendaten.tpl'); } @@ -1842,6 +1846,11 @@ class Firmendaten { if(!empty($data[0]['taxfromdoctypesettings'])) { $this->app->Tpl->Set('OPTIONTAXFROMDOCTYPESETTINGS', ' selected="selected" '); } + + // Fibu + $this->app->Tpl->Set('FIBU_BUCHUNGEN_STARTDATUM', $this->app->erp->ReplaceDatum(false,$data[0]['fibu_buchungen_startdatum'],false)); + + } } @@ -2282,6 +2291,8 @@ class Firmendaten { $data['buchhaltung_wj_beginn'] = ($this->app->Secure->POST["buchhaltung_wj_beginn"]); $data['buchhaltung_sachkontenlaenge'] = ($this->app->Secure->POST["buchhaltung_sachkontenlaenge"]); + $data['fibu_buchungen_startdatum'] = $this->app->erp->ReplaceDatum(true,$this->app->Secure->POST["fibu_buchungen_startdatum"],false); + return $data; } diff --git a/www/pages/gutschrift.php b/www/pages/gutschrift.php index 3182cac8..4e907a9b 100644 --- a/www/pages/gutschrift.php +++ b/www/pages/gutschrift.php @@ -620,6 +620,8 @@ class Gutschrift extends GenGutschrift $tmp3->DisplayNew('PDFARCHIV','Menü','noAction'); } + $this->app->Tpl->Add('ZAHLUNGEN',$this->GutschriftZahlung(true)); + if($parsetarget=='') { $this->app->Tpl->Output('gutschrift_minidetail.tpl'); $this->app->ExitXentral(); @@ -648,6 +650,7 @@ class Gutschrift extends GenGutschrift /** + * Build the html output for minidetail containing the payments * @param bool $return * * @return string @@ -656,102 +659,37 @@ class Gutschrift extends GenGutschrift { $id = $this->app->Secure->GetGET('id'); - $gutschriftArr = $this->app->DB->SelectArr( - "SELECT DATE_FORMAT(datum,'%d.%m.%Y') as datum, belegnr, soll, waehrung, rechnungid - FROM gutschrift WHERE id='$id' LIMIT 1" - ); - $waehrung = empty($gutschriftArr)?'EUR':$gutschriftArr[0]['waehrung']; - if(!$waehrung) { - $waehrung = 'EUR'; - } + $zahlungen = $this->app->erp->GetZahlungen($id,'gutschrift'); + if (!empty($zahlungen)) { + $et = new EasyTable($this->app); - $rechnungid = empty($gutschriftArr)?0: $gutschriftArr[0]['rechnungid']; + $et->headings = array('Datum','Beleg','Betrag','Währung'); - $auftragid = $rechnungid <= 0?0:$this->app->DB->Select( - sprintf( - 'SELECT `auftragid` FROM `rechnung` WHERE `id` = %d LIMIT 1', - $rechnungid - ) - ); - $eingang ="Zahlungen"; + foreach ($zahlungen as $zahlung) { + $row = array( + $zahlung['datum'], + " + ".ucfirst($zahlung['doc_typ'])." + ".$zahlung['doc_info']." + ", + $zahlung['betrag'], + $zahlung['waehrung'] + ); + $et->AddRow($row); + } - - $eingang .="".$gutschriftArr[0]['datum'] - ."GS ".$gutschriftArr[0]['belegnr'] - ."".$this->app->erp->EUR($gutschriftArr[0]['soll']) - ." $waehrung"; - - $eingangArr = $this->app->DB->SelectArr( - "SELECT ko.bezeichnung as konto, DATE_FORMAT(ke.datum,'%d.%m.%Y') as datum, k.id as kontoauszuege, - ke.betrag as betrag, k.id as zeile,k.waehrung - FROM kontoauszuege_zahlungseingang ke - LEFT JOIN kontoauszuege k ON ke.kontoauszuege=k.id - LEFT JOIN konten ko ON k.konto=ko.id - WHERE (ke.objekt='gutschrift' AND ke.parameter='$id') - OR (ke.objekt='auftrag' AND ke.parameter='$auftragid' AND ke.parameter>0) - OR (ke.objekt='rechnung' AND ke.parameter='$rechnungid' AND ke.parameter>0)" - ); - $ceingangArr = empty($eingangArr)?0:(!empty($eingangArr)?count($eingangArr):0); - - for($i=0;$i<$ceingangArr;$i++) { - $waehrung = 'EUR'; - if($eingangArr[$i]['waehrung']) { - $waehrung = $eingangArr[$i]['waehrung']; - } - $eingang .="".$eingangArr[$i]['datum'] - ."".$eingangArr[$i]['konto'] - ." (zur Buchung)" - .$this->app->erp->EUR($eingangArr[$i]['betrag']) - ." $waehrung"; - } - // gutschriften zu dieser rechnung anzeigen -/* - $gutschriften = $this->app->DB->SelectArr("SELECT belegnr, DATE_FORMAT(datum,'%d.%m.%Y') as datum,soll FROM gutschrift WHERE rechnungid='$id'"); - - for($i=0;$i<(!empty($gutschriften)?count($gutschriften):0);$i++) - $eingang .="".$gutschriften[$i]['datum']."GS ".$gutschriften[$i]['belegnr']."".$this->app->erp->EUR($gutschriften[$i]['soll'])." EUR"; - -*/ - - $ausgang = ''; - $ausgangArr = $this->app->DB->SelectArr( - "SELECT ko.bezeichnung as konto, DATE_FORMAT(ke.datum,'%d.%m.%Y') as datum, ke.betrag as betrag, - k.id as zeile,k.waehrung - FROM kontoauszuege_zahlungsausgang ke - LEFT JOIN kontoauszuege k ON ke.kontoauszuege=k.id - LEFT JOIN konten ko ON k.konto=ko.id - WHERE (ke.objekt='gutschrift' AND ke.parameter='$id') - OR (ke.objekt='rechnung' AND ke.parameter='$rechnungid' AND ke.parameter>0) - OR (ke.objekt='auftrag' AND ke.parameter='$auftragid' AND ke.parameter>0)" - ); - $cAusgangArr = empty($ausgangArr)?0:(!empty($ausgangArr)?count($ausgangArr):0); - for($i=0;$i<$cAusgangArr;$i++) { - $waehrung = 'EUR'; - if($ausgangArr[$i]['waehrung']) { - $waehrung = $ausgangArr[$i]['waehrung']; - } - $ausgang .="".$ausgangArr[$i]['datum']."" - .$ausgangArr[$i]['konto']." (zur Buchung)" - .$this->app->erp->EUR($ausgangArr[$i]['betrag']) - ." $waehrung"; - } - - $saldo = $this->app->erp->EUR($this->app->erp->GutschriftSaldo($id)); - - if($saldo < 0) { - $saldo = "$saldo"; - } - $waehrung = $this->app->DB->Select("SELECT waehrung FROM gutschrift WHERE id = '$id' LIMIT 1"); - if(!$waehrung) { - $waehrung = 'EUR'; - } - $ausgang .="Saldo$saldo $waehrung"; - - if($return) { - return "".$eingang." ".$ausgang."
"; - } + $salden = $this->app->erp->GetSaldenDokument($id,'gutschrift'); + foreach ($salden as $saldo) { + $row = array( + '', + 'Saldo', + "".$saldo['betrag']."", + "".$saldo['waehrung']."" + ); + $et->AddRow($row); + } + return($et->DisplayNew('return',"")); + } } @@ -774,17 +712,32 @@ class Gutschrift extends GenGutschrift $showDefault = true; $this->app->Tpl->Set('TABTEXT','Freigabe'); $this->app->erp->GutschriftNeuberechnen($id); - $this->app->erp->CheckVertrieb($id,'gutschrift'); $this->app->erp->CheckBearbeiter($id,'gutschrift'); $doctype = 'gutschrift'; + + $sql = "SELECT belegnr, rechnungid FROM gutschrift WHERE id='$id' LIMIT 1"; + $result = $this->app->DB->SelectArr($sql); + $belegnr = $result[0]['belegnr']; + $rechnungid = $result[0]['rechnungid']; + $name = $this->app->DB->Select("SELECT a.name FROM gutschrift b LEFT JOIN adresse a ON a.id=b.adresse WHERE b.id='$id' LIMIT 1"); + $summe = $this->app->DB->Select("SELECT soll FROM gutschrift WHERE id='$id' LIMIT 1"); + $waehrung = $this->app->DB->Select("SELECT waehrung FROM gutschrift_position WHERE gutschrift='$id' LIMIT 1"); + if(empty($intern)){ $this->app->erp->RunHook('beleg_freigabe', 4, $doctype, $id, $allowedFrm, $showDefault); } - if($allowedFrm && $freigabe==$id) { - $belegnr = $this->app->DB->Select("SELECT belegnr FROM gutschrift WHERE id='$id' LIMIT 1"); + if($allowedFrm && $freigabe==$id) { + if($belegnr=='') { $this->app->erp->BelegFreigabe('gutschrift',$id); + + // Create fibu_buchung + $gegen_rechnung = $this->app->Secure->GetGET('gegen_rechnung'); + if ($gegen_rechnung && $rechnungid > 0) { + $this->app->erp->fibu_buchungen_buchen('gutschrift', $id, 'rechnung', $rechnungid, -$summe, $waehrung, date("Y-m-d"), 'Verrechnung'); + } + if($intern) { return 1; } @@ -797,15 +750,17 @@ class Gutschrift extends GenGutschrift $msg = $this->app->erp->base64_url_encode("
Die Gutschrift war bereits freigegeben!
"); $this->app->Location->execute("index.php?module=gutschrift&action=edit&id=$id&msg=$msg"); } - if($showDefault){ - $name = $this->app->DB->Select("SELECT a.name FROM gutschrift b LEFT JOIN adresse a ON a.id=b.adresse WHERE b.id='$id' LIMIT 1"); - $summe = $this->app->DB->Select("SELECT soll FROM gutschrift WHERE id='$id' LIMIT 1"); - $waehrung = $this->app->DB->Select("SELECT waehrung FROM gutschrift_position - WHERE gutschrift='$id' LIMIT 1"); - + if($showDefault){ + if ($rechnungid > 0) { + $input_html = "" + .""; + } else { + $input_html = ""; + } $this->app->Tpl->Set('TAB1', "
Soll die Gutschrift an $name im Wert von $summe $waehrung - jetzt freigegeben werden? -
"); + jetzt freigegeben werden? ". + $input_html. + ""); } $this->GutschriftMenu(); $this->app->Tpl->Parse('PAGE','tabview.tpl'); @@ -1176,7 +1131,6 @@ class Gutschrift extends GenGutschrift $this->app->erp->CheckBearbeiter($id,"gutschrift"); $this->app->erp->CheckBuchhaltung($id,"gutschrift"); - $this->app->erp->GutschriftNeuberechnen($id); $this->app->erp->DisableVerband(); @@ -1185,14 +1139,11 @@ class Gutschrift extends GenGutschrift $this->app->Tpl->Set('ICONMENU',$this->GutschriftIconMenu($id)); $this->app->Tpl->Set('ICONMENU2',$this->GutschriftIconMenu($id,2)); - $belegnr = $this->app->DB->Select("SELECT belegnr FROM gutschrift WHERE id='$id' LIMIT 1"); $nummer = $this->app->DB->Select("SELECT belegnr FROM gutschrift WHERE id='$id' LIMIT 1"); $kundennummer = $this->app->DB->Select("SELECT kundennummer FROM gutschrift WHERE id='$id' LIMIT 1"); $adresse = $this->app->DB->Select("SELECT adresse FROM gutschrift WHERE id='$id' LIMIT 1"); - - $status= $this->app->DB->Select("SELECT status FROM gutschrift WHERE id='$id' LIMIT 1"); $schreibschutz= $this->app->DB->Select("SELECT schreibschutz FROM gutschrift WHERE id='$id' LIMIT 1"); if($status !== 'angelegt' && $status !== 'angelegta' && $status !== 'a') @@ -1241,7 +1192,12 @@ class Gutschrift extends GenGutschrift if($zahlungsweise=="einzugsermaechtigung" || $zahlungsweise=="lastschrift") $this->app->Tpl->Set('EINZUGSERMAECHTIGUNG',""); if($zahlungsweise=="vorkasse" || $zahlungsweise=="kreditkarte" || $zahlungsweise=="paypal" || $zahlungsweise=="bar") $this->app->Tpl->Set('VORKASSE',""); + $zahlungsinfo = $this->app->DB->SelectArr("SELECT zahlungsstatus, ".$this->app->erp->FormatMenge('soll*(-1)',2)." as betrag FROM gutschrift WHERE id='$id' LIMIT 1"); + $this->app->Tpl->Set('ZAHLUNGSSTATUS_DB',$zahlungsinfo[0]['zahlungsstatus']); + $this->app->Tpl->Set('SOLL',$zahlungsinfo[0]['betrag']); + $ist = $this->app->erp->EUR($this->app->erp->GetSaldoDokument($id,'gutschrift')['betrag']); + $this->app->Tpl->Set('ISTDB',$ist); if($schreibschutz=="1" && $this->app->erp->RechteVorhanden("gutschrift","schreibschutz")) { @@ -1249,11 +1205,24 @@ class Gutschrift extends GenGutschrift // $this->app->erp->CommonReadonly(); } - if($schreibschutz=="1") - $this->app->erp->CommonReadonly(); + if($schreibschutz=="1") { + $this->app->erp->CommonReadonly(); + } + + if($schreibschutz=='1' && $this->app->erp->RechteVorhanden('gutschrift','edit')) + { + $this->app->erp->RemoveReadonly('zahlungsstatus'); + + if ($aktion = $this->app->Secure->GetPOST('speichern') == 'Speichern') { + $zahlungsstatus = $this->app->Secure->GetPOST('zahlungsstatus'); + $this->app->DB->Update("UPDATE gutschrift SET zahlungsstatus='".$zahlungsstatus."' WHERE id='$id' LIMIT 1"); + } + + } $rechnungid = $this->app->DB->Select("SELECT rechnungid FROM gutschrift WHERE id='$id' LIMIT 1"); $rechnungid = $this->app->DB->Select("SELECT id FROM rechnung WHERE id='$rechnungid' AND belegnr!='' LIMIT 1"); + $alle_gutschriften = $this->app->DB->SelectArr("SELECT id,belegnr FROM gutschrift WHERE rechnungid='$rechnungid' AND rechnungid>0"); if (!is_null($alle_gutschriften)) { @@ -1445,6 +1414,8 @@ class Gutschrift extends GenGutschrift { $this->app->Tpl->Set('UEBERSCHRIFT', 'Gutschriften'); + $this->app->DB->Update("UPDATE gutschrift SET zahlungsstatus='offen' WHERE zahlungsstatus=''"); + if($this->app->Secure->GetPOST('ausfuehren') && $this->app->erp->RechteVorhanden('gutschrift', 'edit')) { $drucker = $this->app->Secure->GetPOST('seldrucker'); $aktion = $this->app->Secure->GetPOST('sel_aktion'); @@ -1463,7 +1434,13 @@ class Gutschrift extends GenGutschrift $ids = array_unique($ids); switch($aktion) { - case 'erledigtam': + case 'bezahlt': + $this->app->DB->Update("UPDATE gutschrift SET zahlungsstatus='bezahlt' WHERE id IN (".implode(', ',$ids).')'); + break; + case 'offen': + $this->app->DB->Update("UPDATE gutschrift SET zahlungsstatus='offen' WHERE id IN (".implode(', ',$ids).')'); + break; +/* case 'erledigtam': if(!empty($ids)){ $this->app->DB->Update( sprintf( @@ -1488,7 +1465,7 @@ class Gutschrift extends GenGutschrift ) ); } - break; + break;*/ case 'mail': $returnOrders = empty($ids)?[]:$this->app->DB->SelectArr( sprintf( @@ -1682,6 +1659,28 @@ class Gutschrift extends GenGutschrift } } + // refresh all open items + $openids = $this->app->DB->SelectArr("SELECT id, waehrung from gutschrift WHERE zahlungsstatus != 'bezahlt'"); + + foreach ($openids as $openid) { + $saldo = $this->app->erp->GetSaldoDokument($openid['id'],'gutschrift'); + + if (!empty($saldo)) { + if ($saldo['waehrung'] == $openid['waehrung']) { + $sql = "UPDATE + gutschrift + SET + ist = ".$saldo['betrag']."+soll, + zahlungsstatus = IF(".$saldo['betrag']." = 0,'bezahlt','offen') + WHERE id=".$openid['id']; + $this->app->DB->Update($sql); + } + } + else { + $this->app->DB->Update("UPDATE gutschrift SET ist = null WHERE id=".$openid['id']); + } + } + $backurl = $this->app->Secure->GetGET('backurl'); $backurl = $this->app->erp->base64_url_decode($backurl); @@ -1770,6 +1769,10 @@ class Gutschrift extends GenGutschrift $this->app->YUI->TableSearch('TAB1','gutschriften'); $this->app->YUI->TableSearch('TAB3','gutschrifteninbearbeitung'); + if($this->app->erp->RechteVorhanden('rechnung', 'manuellbezahltmarkiert')){ + $this->app->Tpl->Set('ALSBEZAHLTMARKIEREN', ''); + } + $this->app->Tpl->Set( 'SELDRUCKER', $this->app->erp->GetSelectDrucker($this->app->User->GetParameter('rechnung_list_drucker')) diff --git a/www/pages/importvorlage.php b/www/pages/importvorlage.php index eac2209f..c676a4ae 100644 --- a/www/pages/importvorlage.php +++ b/www/pages/importvorlage.php @@ -1030,7 +1030,7 @@ class Importvorlage extends GenImportvorlage { if (!move_uploaded_file($_FILES['userfile']['tmp_name'], $stueckliste_csv)) { //$importfilename = $_FILES['userfile']['name']; - $msg = $this->app->erp->base64_url_encode("
Die Datei konnte nicht geöffnet werden. Eventuell ist die Datei zu groß oder die Schreibrechte stimmen nicht!
"); + $msg = $this->app->erp->base64_url_encode("
Die Datei '".$stueckliste_csv."' konnte nicht geöffnet werden. Eventuell ist die Datei zu groß oder die Schreibrechte stimmen nicht!
"); $this->app->Location->execute("index.php?module=importvorlage&action=import&id=$id&msg=$msg"); } @@ -1419,7 +1419,7 @@ class Importvorlage extends GenImportvorlage { $zeitstempel = time(); $number_of_rows = empty($tmp['cmd'])?0:count($tmp['cmd']); - $number_of_rows = $number_of_rows + 2; +// $number_of_rows = $number_of_rows + 2; // ?!?! if($isCronjob) { $this->app->DB->Update( @@ -5079,6 +5079,92 @@ class Importvorlage extends GenImportvorlage { } break; + case 'kontoauszug': + + $allowed_fields = array('konto','buchung','betrag','betrag2','waehrung','buchungstext','buchungstext2','buchungstext3','buchungstext4'); + + $error = false; + + // Create a row dataset (without checked and cmd) + $update_sql = ""; + $row = array(); + $comma = ""; + foreach ($tmp as $key => $value) { + if ($key != 'cmd' && $key != 'checked') { + if (in_array($key,$allowed_fields)) { + $row[$key] = $value[$i]; + $comma = ", "; + } else { + $msg .= "Feld nicht korrekt: ".$key.".
"; + $error = true; + } + } + } + + if (!$error) { + // Collect texts + $buchungstext = ""; + $comma = ""; + foreach ($row as $key => $value) { + if (str_starts_with($key,'buchungstext')) { + if (!empty($value)) { + $buchungstext .= $comma.$value; + $comma = ", "; + } + unset($row[$key]); + } + } + $row['buchungstext'] = $buchungstext; + + $row['soll'] = $row['betrag']; + unset($row['betrag']); + + if (empty($row['soll'])) { + $row['soll'] = $row['betrag2']; + } + unset($row['betrag2']); + + $row['soll'] = $this->app->erp->ReplaceBetrag(true,$row['soll']); + + $row['buchung'] = $this->app->erp->ReplaceDatum(true,$row['buchung'],false); + + // Calculate hash + $hash_fields = array('buchung','soll','waehrung','buchungstext'); + $hash_text = ""; + + foreach($hash_fields as $hash_field) { + $hash_text .= $row[$hash_field]; + } + $row['pruefsumme'] = md5($hash_text); + + $sql = "SELECT id FROM konten WHERE kurzbezeichnung ='".$row['konto']."' LIMIT 1"; + $kontoid = $this->app->DB->SelectArr($sql); + + if (!empty($kontoid)) { + + $row['konto'] = $kontoid[0]['id']; + $row['importdatum'] = date("Y-m-d H:i:s"); + + $sql = "SELECT pruefsumme FROM kontoauszuege WHERE pruefsumme='".$row['pruefsumme']."' AND konto ='".$row['konto']."' AND importfehler IS NULL"; + $result = $this->app->DB->SelectArr($sql); + + if (!empty($result)) { + $msg .= "Doppelter Eintrag (nicht importiert): ".$row['buchungstext']."
"; + } else { + $sql = "INSERT INTO kontoauszuege (". + implode(", ",array_keys($row)). + ") VALUES ('". + implode("', '",array_values($row)). + "')"; + + $result = $this->app->DB->Update($sql); + } + } else { + $msg .= "Konto nicht gefunden: ".$row['konto'].".
"; + } + } + + break; } // HERE END OF PROCESSING THE ROWS switch($ziel); @@ -5106,20 +5192,22 @@ class Importvorlage extends GenImportvorlage { if(empty($importMasterData) || $importMasterData['status'] === 'cancelled') { break; } + } + } // Loop + if($return) { + if($returnids) { + return $ids; } + return $number_of_rows; } - if($return) { - if($returnids) { - return $ids; - } - return $number_of_rows; - } - if($ziel==='zeiterfassung' || $ziel==='wiedervorlage' || $ziel==='notizen') { - $msg=$this->app->erp->base64_url_encode("
Import durchgeführt.
"); - $this->app->Location->execute("index.php?module=importvorlage&action=import&id=$id&msg=$msg"); - } - $msg=$this->app->erp->base64_url_encode("
Import durchgeführt.
"); - $this->app->Location->execute("index.php?module=importvorlage&action=import&id=$id&msg=$msg"); + + if (empty($msg)) { + $msg=$this->app->erp->base64_url_encode("
Import durchgeführt.
"); + $this->app->Location->execute("index.php?module=importvorlage&action=import&id=$id&msg=$msg"); + } else { + $msg=$this->app->erp->base64_url_encode("
".$msg."
"); + $this->app->Location->execute("index.php?module=importvorlage&action=import&id=$id&msg=$msg"); + } } /** diff --git a/www/pages/konten.php b/www/pages/konten.php new file mode 100644 index 00000000..8dcefa1d --- /dev/null +++ b/www/pages/konten.php @@ -0,0 +1,349 @@ +app = $app; + if ($intern) + return; + + $this->app->ActionHandlerInit($this); + $this->app->ActionHandler("list", "konten_list"); + $this->app->ActionHandler("create", "konten_edit"); // This automatically adds a "New" button + $this->app->ActionHandler("edit", "konten_edit"); + $this->app->ActionHandler("delete", "konten_delete"); + $this->app->DefaultActionHandler("list"); + $this->app->ActionHandlerListen($app); + } + + public function Install() { + /* Fill out manually later */ + } + + static function TableSearch(&$app, $name, $erlaubtevars) { + switch ($name) { + case "konten_list": + $allowed['konten_list'] = array('list'); + $heading = array('','','Bezeichnung', 'Kurzbezeichnung', 'Typ', 'Projekt', 'Aktiv','Menü'); + $width = array('1%','1%','10%'); // Fill out manually later + + // columns that are aligned right (numbers etc) + // $alignright = array(4,5,6,7,8); + + $findcols = array('k.id','k.id','k.bezeichnung', 'k.kurzbezeichnung', 'k.type', 'p.abkuerzung', ' k.aktiv','k.id'); + $searchsql = array('k.bezeichnung', 'k.kurzbezeichnung', 'k.datevkonto', 'k.blz', 'k.konto', 'k.swift', 'k.iban', 'k.inhaber', 'k.firma','p.abkuerzung'); + + $defaultorder = 1; + $defaultorderdesc = 0; + + $dropnbox = "'' AS `open`, CONCAT('') AS `auswahl`"; + + $menu = "
" . "Conf->WFconf['defaulttheme']}/images/edit.svg\" border=\"0\"> " . "Conf->WFconf['defaulttheme']}/images/delete.svg\" border=\"0\">" . "
"; + + $sql = "SELECT SQL_CALC_FOUND_ROWS + k.id, + $dropnbox, + k.bezeichnung, + k.kurzbezeichnung, + k.type, + p.abkuerzung, + k.aktiv, + k.id + FROM + konten k + LEFT JOIN + projekt p + ON + p.id = k.projekt "; + + $where = " k.aktiv = 1 "; + + // Toggle filters + $app->Tpl->Add('JQUERYREADY', "$('#archiv').click( function() { fnFilterColumn1( 0 ); } );"); + + for ($r = 1;$r <= 1;$r++) { + $app->Tpl->Add('JAVASCRIPT', ' + function fnFilterColumn' . $r . ' ( i ) + { + if(oMoreData' . $r . $name . '==1) + oMoreData' . $r . $name . ' = 0; + else + oMoreData' . $r . $name . ' = 1; + + $(\'#' . $name . '\').dataTable().fnFilter( + \'\', + i, + 0,0 + ); + } + '); + } + + + $more_data1 = $app->Secure->GetGET("more_data1"); + if ($more_data1 == 1) { + $where .= " OR k.aktiv <> 1"; + } else { + } + + + $count = "SELECT count(DISTINCT id) FROM konten k WHERE $where"; +// $groupby = ""; + + break; + } + + $erg = false; + + foreach ($erlaubtevars as $k => $v) { + if (isset($$v)) { + $erg[$v] = $$v; + } + } + return $erg; + } + + function konten_list() { + $this->app->erp->MenuEintrag("index.php?module=konten&action=list", "Übersicht"); + $this->app->erp->MenuEintrag("index.php?module=konten&action=create", "Neu anlegen"); + + $this->app->erp->MenuEintrag("index.php", "Zurück"); + + $this->app->YUI->TableSearch('TAB1', 'konten_list', "show", "", "", basename(__FILE__), __CLASS__); + $this->app->Tpl->Parse('PAGE', "konten_list.tpl"); + } + + public function konten_delete() { + $id = (int) $this->app->Secure->GetGET('id'); + + $this->app->DB->Delete("UPDATE `konten` SET `aktiv` = 0 WHERE `id` = '{$id}'"); + $this->app->Tpl->Set('MESSAGE', "
Der Eintrag wurde deaktiviert.
"); + + $this->konten_list(); + } + + /* + * Edit konten item + * If id is empty, create a new one + */ + + function konten_edit() { + $id = $this->app->Secure->GetGET('id'); + + // Check if other users are editing this id + if($this->app->erp->DisableModul('artikel',$id)) + { + return; + } + + $this->app->Tpl->Set('ID', $id); + + $this->app->erp->MenuEintrag("index.php?module=konten&action=edit&id=$id", "Details"); + $this->app->erp->MenuEintrag("index.php?module=konten&action=list", "Zurück zur Übersicht"); + $id = $this->app->Secure->GetGET('id'); + $input = $this->GetInput(); + $submit = $this->app->Secure->GetPOST('submit'); + + if (empty($id)) { + // New item + $id = 'NULL'; + } + + if ($submit != '') + { + + // Write to database + + // Add checks here + $input['projekt'] = $this->app->erp->ReplaceProjekt(true,$input['projekt'],true); + + $columns = "id, "; + $values = "$id, "; + $update = ""; + + $fix = ""; + + foreach ($input as $key => $value) { + $columns = $columns.$fix.$key; + $values = $values.$fix."'".$value."'"; + $update = $update.$fix.$key." = '$value'"; + + $fix = ", "; + } + +// echo($columns."
"); +// echo($values."
"); +// echo($update."
"); + + $sql = "INSERT INTO konten (".$columns.") VALUES (".$values.") ON DUPLICATE KEY UPDATE ".$update; + +// echo($sql); + + $this->app->DB->Update($sql); + + if ($id == 'NULL') { + $msg = $this->app->erp->base64_url_encode("
Das Element wurde erfolgreich angelegt.
"); + header("Location: index.php?module=konten&action=list&msg=$msg"); + } else { + $this->app->Tpl->Set('MESSAGE', "
Die Einstellungen wurden erfolgreich übernommen.
"); + } + } + + + // Load values again from database + $dropnbox = "'' AS `open`, CONCAT('') AS `auswahl`"; + $result = $this->app->DB->SelectArr("SELECT SQL_CALC_FOUND_ROWS k.id, $dropnbox, k.bezeichnung, k.kurzbezeichnung, k.type, k.erstezeile, k.datevkonto, k.blz, k.konto, k.swift, k.iban, k.lastschrift, k.hbci, k.hbcikennung, k.inhaber, k.aktiv, k.keineemail, k.firma, k.schreibbar, k.importletztenzeilenignorieren, k.liveimport, k.liveimport_passwort, k.liveimport_online, k.importtrennzeichen, k.codierung, k.importerstezeilenummer, k.importdatenmaskierung, k.importnullbytes, k.glaeubiger, k.geloescht, k.projekt, k.saldo_summieren, k.saldo_betrag, k.saldo_datum, k.importfelddatum, k.importfelddatumformat, k.importfelddatumformatausgabe, k.importfeldbetrag, k.importfeldbetragformat, k.importfeldbuchungstext, k.importfeldbuchungstextformat, k.importfeldwaehrung, k.importfeldwaehrungformat, k.importfeldhabensollkennung, k.importfeldkennunghaben, k.importfeldkennungsoll, k.importextrahabensoll, k.importfeldhaben, k.importfeldsoll, k.cronjobaktiv, k.cronjobverbuchen, k.last_import, k.importperiode_in_hours, k.id FROM konten k"." WHERE id=$id"); + + foreach ($result[0] as $key => $value) { + $this->app->Tpl->Set(strtoupper($key), $value); + } + + /* + * Add displayed items later + * + + $this->app->Tpl->Add('KURZUEBERSCHRIFT2', $email); + $this->app->Tpl->Add('EMAIL', $email); + $this->app->Tpl->Add('ANGEZEIGTERNAME', $angezeigtername); + */ + + $this->app->YUI->AutoComplete('projekt','projektname',1); + $this->app->Tpl->Set('PROJEKT',$this->app->erp->ReplaceProjekt(false,$result[0]['projekt'],false)); + + $this->app->Tpl->Set('AKTIV',$result[0]['aktiv']==1?'checked':''); + $this->app->Tpl->Set('KEINEEMAIL',$result[0]['keineemail']==1?'checked':''); + $this->app->Tpl->Set('SCHREIBBAR',$result[0]['schreibbar']==1?'checked':''); + $this->app->Tpl->Set('LASTSCHRIFT',$result[0]['lastschrift']==1?'checked':''); + $this->app->Tpl->Set('SALDO_SUMMIEREN',$result[0]['saldo_summieren']==1?'checked':''); + + $this->app->Tpl->Parse('PAGE', "konten_edit.tpl"); + } + + /** + * Get all paramters from html form and save into $input + */ + public function GetInput(): array { + $input = array(); + //$input['EMAIL'] = $this->app->Secure->GetPOST('email'); + + $input['bezeichnung'] = $this->app->Secure->GetPOST('bezeichnung'); + $input['kurzbezeichnung'] = $this->app->Secure->GetPOST('kurzbezeichnung'); + $input['type'] = $this->app->Secure->GetPOST('type'); + $input['erstezeile'] = $this->app->Secure->GetPOST('erstezeile'); + $input['datevkonto'] = $this->app->Secure->GetPOST('datevkonto'); + $input['blz'] = $this->app->Secure->GetPOST('blz'); + $input['konto'] = $this->app->Secure->GetPOST('konto'); + $input['swift'] = $this->app->Secure->GetPOST('swift'); + $input['iban'] = $this->app->Secure->GetPOST('iban'); + $input['lastschrift'] = $this->app->Secure->GetPOST('lastschrift'); + $input['hbci'] = $this->app->Secure->GetPOST('hbci'); + $input['hbcikennung'] = $this->app->Secure->GetPOST('hbcikennung'); + $input['inhaber'] = $this->app->Secure->GetPOST('inhaber'); + $input['aktiv'] = $this->app->Secure->GetPOST('aktiv'); + $input['keineemail'] = $this->app->Secure->GetPOST('keineemail'); + $input['firma'] = $this->app->Secure->GetPOST('firma'); + $input['schreibbar'] = $this->app->Secure->GetPOST('schreibbar'); + $input['importletztenzeilenignorieren'] = $this->app->Secure->GetPOST('importletztenzeilenignorieren'); + $input['liveimport'] = $this->app->Secure->GetPOST('liveimport'); + $input['liveimport_passwort'] = $this->app->Secure->GetPOST('liveimport_passwort'); + $input['liveimport_online'] = $this->app->Secure->GetPOST('liveimport_online'); + $input['importtrennzeichen'] = $this->app->Secure->GetPOST('importtrennzeichen'); + $input['codierung'] = $this->app->Secure->GetPOST('codierung'); + $input['importerstezeilenummer'] = $this->app->Secure->GetPOST('importerstezeilenummer'); + $input['importdatenmaskierung'] = $this->app->Secure->GetPOST('importdatenmaskierung'); + $input['importnullbytes'] = $this->app->Secure->GetPOST('importnullbytes'); + $input['glaeubiger'] = $this->app->Secure->GetPOST('glaeubiger'); + $input['geloescht'] = $this->app->Secure->GetPOST('geloescht'); + $input['projekt'] = $this->app->Secure->GetPOST('projekt'); + $input['saldo_summieren'] = $this->app->Secure->GetPOST('saldo_summieren'); + $input['saldo_betrag'] = $this->app->Secure->GetPOST('saldo_betrag'); + $input['saldo_datum'] = $this->app->Secure->GetPOST('saldo_datum'); + $input['importfelddatum'] = $this->app->Secure->GetPOST('importfelddatum'); + $input['importfelddatumformat'] = $this->app->Secure->GetPOST('importfelddatumformat'); + $input['importfelddatumformatausgabe'] = $this->app->Secure->GetPOST('importfelddatumformatausgabe'); + $input['importfeldbetrag'] = $this->app->Secure->GetPOST('importfeldbetrag'); + $input['importfeldbetragformat'] = $this->app->Secure->GetPOST('importfeldbetragformat'); + $input['importfeldbuchungstext'] = $this->app->Secure->GetPOST('importfeldbuchungstext'); + $input['importfeldbuchungstextformat'] = $this->app->Secure->GetPOST('importfeldbuchungstextformat'); + $input['importfeldwaehrung'] = $this->app->Secure->GetPOST('importfeldwaehrung'); + $input['importfeldwaehrungformat'] = $this->app->Secure->GetPOST('importfeldwaehrungformat'); + $input['importfeldhabensollkennung'] = $this->app->Secure->GetPOST('importfeldhabensollkennung'); + $input['importfeldkennunghaben'] = $this->app->Secure->GetPOST('importfeldkennunghaben'); + $input['importfeldkennungsoll'] = $this->app->Secure->GetPOST('importfeldkennungsoll'); + $input['importextrahabensoll'] = $this->app->Secure->GetPOST('importextrahabensoll'); + $input['importfeldhaben'] = $this->app->Secure->GetPOST('importfeldhaben'); + $input['importfeldsoll'] = $this->app->Secure->GetPOST('importfeldsoll'); + $input['cronjobaktiv'] = $this->app->Secure->GetPOST('cronjobaktiv'); + $input['cronjobverbuchen'] = $this->app->Secure->GetPOST('cronjobverbuchen'); + $input['last_import'] = $this->app->Secure->GetPOST('last_import'); + $input['importperiode_in_hours'] = $this->app->Secure->GetPOST('importperiode_in_hours'); + return $input; + } + + /* + * Set all fields in the page corresponding to $input + */ + function SetInput($input) { + // $this->app->Tpl->Set('EMAIL', $input['email']); + + $this->app->Tpl->Set('BEZEICHNUNG', $input['bezeichnung']); + $this->app->Tpl->Set('KURZBEZEICHNUNG', $input['kurzbezeichnung']); + $this->app->Tpl->Set('TYPE', $input['type']); + $this->app->Tpl->Set('ERSTEZEILE', $input['erstezeile']); + $this->app->Tpl->Set('DATEVKONTO', $input['datevkonto']); + $this->app->Tpl->Set('BLZ', $input['blz']); + $this->app->Tpl->Set('KONTO', $input['konto']); + $this->app->Tpl->Set('SWIFT', $input['swift']); + $this->app->Tpl->Set('IBAN', $input['iban']); + $this->app->Tpl->Set('LASTSCHRIFT', $input['lastschrift']); + $this->app->Tpl->Set('HBCI', $input['hbci']); + $this->app->Tpl->Set('HBCIKENNUNG', $input['hbcikennung']); + $this->app->Tpl->Set('INHABER', $input['inhaber']); + $this->app->Tpl->Set('AKTIV', $input['aktiv']); + $this->app->Tpl->Set('KEINEEMAIL', $input['keineemail']); + $this->app->Tpl->Set('FIRMA', $input['firma']); + $this->app->Tpl->Set('SCHREIBBAR', $input['schreibbar']); + $this->app->Tpl->Set('IMPORTLETZTENZEILENIGNORIEREN', $input['importletztenzeilenignorieren']); + $this->app->Tpl->Set('LIVEIMPORT', $input['liveimport']); + $this->app->Tpl->Set('LIVEIMPORT_PASSWORT', $input['liveimport_passwort']); + $this->app->Tpl->Set('LIVEIMPORT_ONLINE', $input['liveimport_online']); + $this->app->Tpl->Set('IMPORTTRENNZEICHEN', $input['importtrennzeichen']); + $this->app->Tpl->Set('CODIERUNG', $input['codierung']); + $this->app->Tpl->Set('IMPORTERSTEZEILENUMMER', $input['importerstezeilenummer']); + $this->app->Tpl->Set('IMPORTDATENMASKIERUNG', $input['importdatenmaskierung']); + $this->app->Tpl->Set('IMPORTNULLBYTES', $input['importnullbytes']); + $this->app->Tpl->Set('GLAEUBIGER', $input['glaeubiger']); + $this->app->Tpl->Set('GELOESCHT', $input['geloescht']); + $this->app->Tpl->Set('PROJEKT', $input['projekt']); + $this->app->Tpl->Set('SALDO_SUMMIEREN', $input['saldo_summieren']); + $this->app->Tpl->Set('SALDO_BETRAG', $input['saldo_betrag']); + $this->app->Tpl->Set('SALDO_DATUM', $input['saldo_datum']); + $this->app->Tpl->Set('IMPORTFELDDATUM', $input['importfelddatum']); + $this->app->Tpl->Set('IMPORTFELDDATUMFORMAT', $input['importfelddatumformat']); + $this->app->Tpl->Set('IMPORTFELDDATUMFORMATAUSGABE', $input['importfelddatumformatausgabe']); + $this->app->Tpl->Set('IMPORTFELDBETRAG', $input['importfeldbetrag']); + $this->app->Tpl->Set('IMPORTFELDBETRAGFORMAT', $input['importfeldbetragformat']); + $this->app->Tpl->Set('IMPORTFELDBUCHUNGSTEXT', $input['importfeldbuchungstext']); + $this->app->Tpl->Set('IMPORTFELDBUCHUNGSTEXTFORMAT', $input['importfeldbuchungstextformat']); + $this->app->Tpl->Set('IMPORTFELDWAEHRUNG', $input['importfeldwaehrung']); + $this->app->Tpl->Set('IMPORTFELDWAEHRUNGFORMAT', $input['importfeldwaehrungformat']); + $this->app->Tpl->Set('IMPORTFELDHABENSOLLKENNUNG', $input['importfeldhabensollkennung']); + $this->app->Tpl->Set('IMPORTFELDKENNUNGHABEN', $input['importfeldkennunghaben']); + $this->app->Tpl->Set('IMPORTFELDKENNUNGSOLL', $input['importfeldkennungsoll']); + $this->app->Tpl->Set('IMPORTEXTRAHABENSOLL', $input['importextrahabensoll']); + $this->app->Tpl->Set('IMPORTFELDHABEN', $input['importfeldhaben']); + $this->app->Tpl->Set('IMPORTFELDSOLL', $input['importfeldsoll']); + $this->app->Tpl->Set('CRONJOBAKTIV', $input['cronjobaktiv']); + $this->app->Tpl->Set('CRONJOBVERBUCHEN', $input['cronjobverbuchen']); + $this->app->Tpl->Set('LAST_IMPORT', $input['last_import']); + $this->app->Tpl->Set('IMPORTPERIODE_IN_HOURS', $input['importperiode_in_hours']); + + } + +} diff --git a/www/pages/kontoauszuege.php b/www/pages/kontoauszuege.php new file mode 100644 index 00000000..e60dd42d --- /dev/null +++ b/www/pages/kontoauszuege.php @@ -0,0 +1,539 @@ +app = $app; + if ($intern) + return; + + $this->app->ActionHandlerInit($this); + $this->app->ActionHandler("list", "kontoauszuege_konto_list"); + $this->app->ActionHandler("listentries", "kontoauszuege_list"); +// $this->app->ActionHandler("create", "kontoauszuege_edit"); // This automatically adds a "New" button + $this->app->ActionHandler("edit", "kontoauszuege_edit"); + $this->app->ActionHandler("delete", "kontoauszuege_delete"); + $this->app->DefaultActionHandler("list"); + $this->app->ActionHandlerListen($app); + } + + public function Install() { + /* Fill out manually later */ + } + + function TableSearch(&$app, $name, $erlaubtevars) { + switch ($name) { + case "kontoauszuege_konto_list": + + $allowed['konten_list'] = array('list'); + $heading = array('Bezeichnung', 'Kurzbezeichnung', 'Typ', 'Kontostand','Letzter Import', 'Menü'); +// $width = array('1%','1%','10%'); // Fill out manually later + + // columns that are aligned right (numbers etc) + // $alignright = array(4,5,6,7,8); sdds + + $findcols = array('k.bezeichnung', 'k.kurzbezeichnung', 'k.type', 'k.kontostand','ka.datum', 'k.id'); + $searchsql = array('k.bezeichnung', 'k.kurzbezeichnung', 'k.datevkonto', 'k.blz', 'k.konto', 'k.swift', 'k.iban', 'k.inhaber', 'k.firma','p.abkuerzung'); + + $defaultorder = 1; + $defaultorderdesc = 0; + +// $sumcol = array(5); + + $dropnbox = "'' AS `open`, CONCAT('') AS `auswahl`"; + + $menu = "
" . "Conf->WFconf['defaulttheme']}/images/edit.svg\" border=\"0\">
"; + + $saldolink = array ( + '', + ['sql' => $this->app->erp->FormatMenge('SUM(COALESCE(fb.betrag,0))',2)], + '' + ); + + $sql = "SELECT + k.id, + k.bezeichnung, + k.kurzbezeichnung, + ".$this->app->erp->FormatUCfirst('k.type').", + ".$this->app->erp->FormatMenge('SUM(COALESCE(ka.soll,0))+k.saldo_betrag',2)." AS kontostand, + ".$this->app->erp->FormatDatetime("MIN(ka.importdatum)")." AS datum, + k.id + FROM + konten k + LEFT JOIN kontoauszuege ka ON + k.id = ka.konto"; + + $where = " k.aktiv = 1 AND ka.importfehler IS NULL "; + + // Toggle filters + $app->Tpl->Add('JQUERYREADY', "$('#archiv').click( function() { fnFilterColumn1( 0 ); } );"); + + for ($r = 1;$r <= 1;$r++) { + $app->Tpl->Add('JAVASCRIPT', ' + function fnFilterColumn' . $r . ' ( i ) + { + if(oMoreData' . $r . $name . '==1) + oMoreData' . $r . $name . ' = 0; + else + oMoreData' . $r . $name . ' = 1; + + $(\'#' . $name . '\').dataTable().fnFilter( + \'\', + i, + 0,0 + ); + } + '); + } + + + $more_data1 = $app->Secure->GetGET("more_data1"); + if ($more_data1 == 1) { + $where .= " OR k.aktiv <> 1"; + } else { + } + +// echo($sql); + +// $count = "SELECT count(DISTINCT id) FROM konten k WHERE $where"; + $groupby = " GROUP BY k.id"; + + break; + case "kontoauszuege_list": + $allowed['kontoauszuege_list'] = array('list'); + + $kontoid = $this->app->User->getParameter('kontoauszuege_konto_id'); + $onlysaldo = $this->app->User->getParameter('kontoauszuege_only_saldo'); + + $heading = array('','', 'Importdatum', 'Konto', 'Datum', 'Betrag', 'Waehrung', 'Buchungstext','Interne Bemerkung', 'Saldo', 'Menü'); + $width = array('1%','1%', '1%', '10%', '1%', '1%', '1%', '20%', '20%', '1%', '1%'); // Fill out manually later + + // columns that are aligned right (numbers etc) + $alignright = array(6); + + $sumcol = array(10); + + $findcols = array('q.id','q.id','q.kurzbezeichnung', 'q.importdatum', 'q.buchung', 'q.soll', 'q.waehrung', 'q.buchungstext','q.internebemerkung','q.saldo'); + $searchsql = array('q.kurzbezeichnung', 'q.buchung', 'q.soll', 'q.buchungstext','q.internebemerkung'); + + $defaultorder = 1; + $defaultorderdesc = 0; + + $dropnbox = "'' AS `open`, CONCAT('') AS `auswahl`"; + + $menu = "
" . "Conf->WFconf['defaulttheme']}/images/edit.svg\" border=\"0\"> " . "Conf->WFconf['defaulttheme']}/images/delete.svg\" border=\"0\">" . "
"; + + // Toggle filters + $app->Tpl->Add('JQUERYREADY', "$('#importfehler').click( function() { fnFilterColumn1( 0 ); } );"); + + for ($r = 1;$r <= 4;$r++) { + $app->Tpl->Add('JAVASCRIPT', ' + function fnFilterColumn' . $r . ' ( i ) + { + if(oMoreData' . $r . $name . '==1) + oMoreData' . $r . $name . ' = 0; + else + oMoreData' . $r . $name . ' = 1; + + $(\'#' . $name . '\').dataTable().fnFilter( + \'\', + i, + 0,0 + ); + } + '); + } + + + $more_data1 = $app->Secure->GetGET("more_data1"); + if ($more_data1 == 1) { + $subwhere .= ""; + } else { + $subwhere .= " AND k.importfehler IS NULL "; + } + // END Toggle filters + + $sql = "SELECT SQL_CALC_FOUND_ROWS * FROM ( SELECT + k.id, + $dropnbox, + ".$app->erp->FormatDateTimeShort('k.importdatum')." AS importdatum, + (SELECT kurzbezeichnung FROM konten WHERE konten.id = k.konto) as kurzbezeichnung, + ".$app->erp->FormatDate('k.buchung')." as buchung, + IF( + k.importfehler, + CONCAT( + '', + ".$app->erp->FormatMenge('(k.soll)',2).", + '' + ), + ".$app->erp->FormatMenge('(k.soll)',2)."), + k.waehrung, + k.buchungstext, + k.internebemerkung, + ".$app->erp->FormatMenge('SUM(fb.betrag)',2)." AS saldo, + k.id as menuid, + SUM(fb.betrag) AS saldonum + FROM kontoauszuege k + LEFT JOIN fibu_buchungen_alle fb ON + fb.id = k.id AND fb.typ = 'kontoauszuege' + WHERE k.konto = ".$kontoid.$subwhere." + GROUP BY k.id ) AS q + "; + + $where = "1"; + if ($onlysaldo) { + $where .= " AND saldonum != 0"; + } + +// $count = "SELECT count(DISTINCT id) FROM kontoauszuege k WHERE $where"; +// $groupby = ""; + +// echo($sql." WHERE ".$where." ".$groupby); + + break; + case "kontoauszuege_salden": + $allowed['kontoauszuege_list'] = array('list'); + + $kontoid = $this->app->User->getParameter('kontoauszuege_konto_id'); + $onlysaldo = $this->app->User->getParameter('kontoauszuege_only_saldo'); + + $heading = array('','', 'Buchungstext', 'Betrag', 'Waehrung', 'Betrag zuordnen', 'Beleg', 'ID','Beleg-Nr.','', 'Menü'); + $width = array('1%','1%', '20%', '1%', '1%', '1%', '1%', '1%','1%', '1%','1%'); + + // columns that are aligned right (numbers etc) + $alignright = array(6); + + $sumcol = array(10); + + $findcols = array('q.id','q.id','q.konto', 'q.importdatum', 'q.buchung', 'q.soll', 'q.waehrung', 'q.buchungstext','q.internebemerkung','q.saldo'); + $searchsql = array('q.konto', 'q.buchung', 'q.soll', 'q.buchungstext','q.internebemerkung'); + + $defaultorder = 1; + $defaultorderdesc = 0; + + $dropnbox = "'' AS `open`, CONCAT('') AS `auswahl`"; + + $menu = "
" . "Conf->WFconf['defaulttheme']}/images/edit.svg\" border=\"0\"> " . "Conf->WFconf['defaulttheme']}/images/delete.svg\" border=\"0\">" . "
"; + + + $sql = "SELECT + ".$this->app->erp->FormatUCfirst('typ')." + SUM(betrag) + FROM `fibu_buchungen_alle` + "; + + $where = "1"; + if ($onlysaldo) { + $where .= " AND q.saldonum != 0"; + } + +// $count = "SELECT count(DISTINCT id) FROM kontoauszuege k WHERE $where"; + $groupby = "GROUP BY typ"; + +// echo($sql." WHERE ".$where." ".$groupby); + + break; + } + + $erg = false; + + foreach ($erlaubtevars as $k => $v) { + if (isset($$v)) { + $erg[$v] = $$v; + } + } + return $erg; + } + + function kontoauszuege_konto_list() { + + $this->app->erp->MenuEintrag("index.php?module=kontoauszuege&action=list", "Übersicht"); +// $this->app->erp->MenuEintrag("index.php?module=kontoauszuege&action=create", "Neu anlegen"); + + $this->app->erp->MenuEintrag("index.php", "Zurück"); + + $this->app->YUI->TableSearch('TAB1', 'kontoauszuege_konto_list', "show", "", "", basename(__FILE__), __CLASS__); + $this->app->Tpl->Parse('PAGE', "kontoauszuege_konto_list.tpl"); + } + + function kontoauszuege_mark_as_error(int $id) : ?string { + $sql = "SELECT id FROM fibu_buchungen_alle WHERE CONCAT(doc_typ,doc_id) <> CONCAT('kontoauszuege','".$id."') AND typ = 'kontoauszuege' AND id = ".$id; + $result = $this->app->DB->SelectArr($sql); + + if (!empty($result)) { + return("Es existieren Buchungen, Eintrag wurde nicht als Importfehler markiert!"); + } else { + $this->app->DB->Delete("UPDATE `kontoauszuege` SET importfehler = 1 WHERE `id` = '{$id}'"); + return("Der Eintrag wurde als Importfehler markiert."); + } + + return(null); + + } + + function kontoauszuege_list() { + + // Process multi action + $auswahl = $this->app->Secure->GetPOST('auswahl'); + $selectedIds = []; + if(!empty($auswahl)) { + foreach($auswahl as $selectedId) { + $selectedId = (int)$selectedId; + if($selectedId > 0) { + $selectedIds[] = $selectedId; + } + } + + $submit = $this->app->Secure->GetPOST('ausfuehren'); + + if ($submit == 'Importfehler') { + + $message = ""; + + foreach ($selectedIds as $selectedId) { + $result = $this->kontoauszuege_mark_as_error($selectedId); + if ($result) { + $message = $result; + } + } + + if ($message) { + $this->app->Tpl->Set('MESSAGE', "
".$message."
"); + } else { + $this->app->Tpl->Set('MESSAGE', "
Einträge wurden als Importfehler markiert.
"); + } + } + } + + $this->app->erp->MenuEintrag("index.php?module=kontoauszuege&action=list", "Übersicht"); +// $this->app->erp->MenuEintrag("index.php?module=kontoauszuege&action=create", "Neu anlegen"); + + $this->app->erp->MenuEintrag("index.php", "Zurück"); + + $kontoid = $this->app->Secure->GetGET('kid'); + $this->app->User->SetParameter('kontoauszuege_konto_id', $kontoid); + $onlysaldo = $this->app->Secure->GetGET('onlysaldo'); + $this->app->User->SetParameter('kontoauszuege_only_saldo', $onlysaldo); + + if ($onlysaldo) { + $this->app->Tpl->Set('INFO','Nicht zugeordnete Posten'); + } + + $this->app->YUI->TableSearch('TAB1', 'kontoauszuege_list', "show", "", "", basename(__FILE__), __CLASS__); + $this->app->Tpl->Parse('PAGE', "kontoauszuege_list.tpl"); + + } + + public function kontoauszuege_delete() { + $id = (int) $this->app->Secure->GetGET('id'); + + $result = $this->kontoauszuege_mark_as_error($id); + + if ($result) { + $this->app->Tpl->Set('MESSAGE', "
".$result."
"); + } else { + $this->app->Tpl->Set('MESSAGE', "
Der Eintrag wurde als Importfehler markiert.
"); + } + + $this->kontoauszuege_list(); + } + + /* + * Edit kontoauszuege item + * If id is empty, create a new one + */ + + function kontoauszuege_edit() { + $id = $this->app->Secure->GetGET('id'); + + // Check if other users are editing this id + if($this->app->erp->DisableModul('artikel',$id)) + { + return; + } + + $this->app->Tpl->Set('ID', $id); + + $this->app->erp->MenuEintrag("index.php?module=kontoauszuege&action=edit&id=$id", "Details"); + $this->app->erp->MenuEintrag("index.php?module=kontoauszuege&action=list", "Zurück zur Übersicht"); + $id = $this->app->Secure->GetGET('id'); + $input = $this->GetInput(); + $submit = $this->app->Secure->GetPOST('submit'); + +/* if (empty($id)) { + // New item + $id = 'NULL'; + } */ + + if ($submit != '') + { + + // Write to database + + // Add checks here + + $columns = "id, "; + $values = "$id, "; + $update = ""; + + $fix = ""; + + foreach ($input as $key => $value) { + $columns = $columns.$fix.$key; + $values = $values.$fix."'".$value."'"; + $update = $update.$fix.$key." = '$value'"; + + $fix = ", "; + } + +// echo($columns."
"); +// echo($values."
"); +// echo($update."
"); + + $sql = "INSERT INTO kontoauszuege (".$columns.") VALUES (".$values.") ON DUPLICATE KEY UPDATE ".$update; + +// echo($sql); + + $this->app->DB->Update($sql); + + if ($id == 'NULL') { + $msg = $this->app->erp->base64_url_encode("
Das Element wurde erfolgreich angelegt.
"); + header("Location: index.php?module=kontoauszuege&action=list&msg=$msg"); + } else { + $this->app->Tpl->Set('MESSAGE', "
Die Einstellungen wurden erfolgreich übernommen.
"); + } + } + + + // Load values again from database + $dropnbox = "'' AS `open`, CONCAT('') AS `auswahl`"; + $result = $this->app->DB->SelectArr("SELECT SQL_CALC_FOUND_ROWS k.id, $dropnbox, k.konto, k.buchung, k.originalbuchung, k.vorgang, k.originalvorgang, k.soll, k.originalsoll, k.haben, k.originalhaben, k.gebuehr, k.originalgebuehr, k.waehrung, k.originalwaehrung, k.fertig, k.datev_abgeschlossen, k.buchungstext, k.gegenkonto, k.belegfeld1, k.bearbeiter, k.mailbenachrichtigung, k.pruefsumme, k.kostenstelle, k.importgroup, k.diff, k.diffangelegt, k.internebemerkung, k.importfehler, k.parent, k.sort, k.doctype, k.doctypeid, k.vorauswahltyp, k.vorauswahlparameter, k.klaerfall, k.klaergrund, k.bezugtyp, k.bezugparameter, k.vorauswahlvorschlag, k.id FROM kontoauszuege k"." WHERE id=$id"); + + foreach ($result[0] as $key => $value) { + $this->app->Tpl->Set(strtoupper($key), $value); + } + + /* + * Add displayed items later + * + + $this->app->Tpl->Add('KURZUEBERSCHRIFT2', $email); + $this->app->Tpl->Add('EMAIL', $email); + $this->app->Tpl->Add('ANGEZEIGTERNAME', $angezeigtername); + */ + + $sql = "SELECT kurzbezeichnung FROM konten WHERE id=".$result[0]['konto']; + $konto = $this->app->DB->Select($sql); + $this->app->Tpl->Set('KONTO', $konto); + + $this->app->Tpl->Set('BUCHUNG', $this->app->erp->ReplaceDatum(false,$result[0]['buchung'],false)); + $this->app->Tpl->Set('SOLL', $this->app->erp->ReplaceBetrag(false,$result[0]['soll'],false)); + + $this->app->Tpl->Parse('PAGE', "kontoauszuege_edit.tpl"); + } + + /** + * Get all paramters from html form and save into $input + */ + public function GetInput(): array { + $input = array(); + //$input['EMAIL'] = $this->app->Secure->GetPOST('email'); + +/* $input['konto'] = $this->app->Secure->GetPOST('konto'); + $input['buchung'] = $this->app->Secure->GetPOST('buchung'); + $input['originalbuchung'] = $this->app->Secure->GetPOST('originalbuchung'); + $input['vorgang'] = $this->app->Secure->GetPOST('vorgang'); + $input['originalvorgang'] = $this->app->Secure->GetPOST('originalvorgang'); + $input['soll'] = $this->app->Secure->GetPOST('soll'); + $input['originalsoll'] = $this->app->Secure->GetPOST('originalsoll'); + $input['haben'] = $this->app->Secure->GetPOST('haben'); + $input['originalhaben'] = $this->app->Secure->GetPOST('originalhaben'); + $input['gebuehr'] = $this->app->Secure->GetPOST('gebuehr'); + $input['originalgebuehr'] = $this->app->Secure->GetPOST('originalgebuehr'); + $input['waehrung'] = $this->app->Secure->GetPOST('waehrung'); + $input['originalwaehrung'] = $this->app->Secure->GetPOST('originalwaehrung'); + $input['fertig'] = $this->app->Secure->GetPOST('fertig'); + $input['datev_abgeschlossen'] = $this->app->Secure->GetPOST('datev_abgeschlossen'); + $input['buchungstext'] = $this->app->Secure->GetPOST('buchungstext'); + $input['gegenkonto'] = $this->app->Secure->GetPOST('gegenkonto'); + $input['belegfeld1'] = $this->app->Secure->GetPOST('belegfeld1'); + $input['bearbeiter'] = $this->app->Secure->GetPOST('bearbeiter'); + $input['mailbenachrichtigung'] = $this->app->Secure->GetPOST('mailbenachrichtigung'); + $input['pruefsumme'] = $this->app->Secure->GetPOST('pruefsumme'); + $input['kostenstelle'] = $this->app->Secure->GetPOST('kostenstelle'); + $input['importgroup'] = $this->app->Secure->GetPOST('importgroup'); + $input['diff'] = $this->app->Secure->GetPOST('diff'); + $input['diffangelegt'] = $this->app->Secure->GetPOST('diffangelegt'); +*/ $input['internebemerkung'] = $this->app->Secure->GetPOST('internebemerkung'); +/* $input['importfehler'] = $this->app->Secure->GetPOST('importfehler'); + $input['parent'] = $this->app->Secure->GetPOST('parent'); + $input['sort'] = $this->app->Secure->GetPOST('sort'); + $input['doctype'] = $this->app->Secure->GetPOST('doctype'); + $input['doctypeid'] = $this->app->Secure->GetPOST('doctypeid'); + $input['vorauswahltyp'] = $this->app->Secure->GetPOST('vorauswahltyp'); + $input['vorauswahlparameter'] = $this->app->Secure->GetPOST('vorauswahlparameter'); + $input['klaerfall'] = $this->app->Secure->GetPOST('klaerfall'); + $input['klaergrund'] = $this->app->Secure->GetPOST('klaergrund'); + $input['bezugtyp'] = $this->app->Secure->GetPOST('bezugtyp'); + $input['bezugparameter'] = $this->app->Secure->GetPOST('bezugparameter'); + $input['vorauswahlvorschlag'] = $this->app->Secure->GetPOST('vorauswahlvorschlag');*/ + + + return $input; + } + + /* + * Set all fields in the page corresponding to $input + */ + function SetInput($input) { + // $this->app->Tpl->Set('EMAIL', $input['email']); + + $this->app->Tpl->Set('KONTO', $input['konto']); + $this->app->Tpl->Set('BUCHUNG', $input['buchung']); + $this->app->Tpl->Set('ORIGINALBUCHUNG', $input['originalbuchung']); + $this->app->Tpl->Set('VORGANG', $input['vorgang']); + $this->app->Tpl->Set('ORIGINALVORGANG', $input['originalvorgang']); + $this->app->Tpl->Set('SOLL', $input['soll']); + $this->app->Tpl->Set('ORIGINALSOLL', $input['originalsoll']); + $this->app->Tpl->Set('HABEN', $input['haben']); + $this->app->Tpl->Set('ORIGINALHABEN', $input['originalhaben']); + $this->app->Tpl->Set('GEBUEHR', $input['gebuehr']); + $this->app->Tpl->Set('ORIGINALGEBUEHR', $input['originalgebuehr']); + $this->app->Tpl->Set('WAEHRUNG', $input['waehrung']); + $this->app->Tpl->Set('ORIGINALWAEHRUNG', $input['originalwaehrung']); + $this->app->Tpl->Set('FERTIG', $input['fertig']); + $this->app->Tpl->Set('DATEV_ABGESCHLOSSEN', $input['datev_abgeschlossen']); + $this->app->Tpl->Set('BUCHUNGSTEXT', $input['buchungstext']); + $this->app->Tpl->Set('GEGENKONTO', $input['gegenkonto']); + $this->app->Tpl->Set('BELEGFELD1', $input['belegfeld1']); + $this->app->Tpl->Set('BEARBEITER', $input['bearbeiter']); + $this->app->Tpl->Set('MAILBENACHRICHTIGUNG', $input['mailbenachrichtigung']); + $this->app->Tpl->Set('PRUEFSUMME', $input['pruefsumme']); + $this->app->Tpl->Set('KOSTENSTELLE', $input['kostenstelle']); + $this->app->Tpl->Set('IMPORTGROUP', $input['importgroup']); + $this->app->Tpl->Set('DIFF', $input['diff']); + $this->app->Tpl->Set('DIFFANGELEGT', $input['diffangelegt']); + $this->app->Tpl->Set('INTERNEBEMERKUNG', $input['internebemerkung']); + $this->app->Tpl->Set('IMPORTFEHLER', $input['importfehler']); + $this->app->Tpl->Set('PARENT', $input['parent']); + $this->app->Tpl->Set('SORT', $input['sort']); + $this->app->Tpl->Set('DOCTYPE', $input['doctype']); + $this->app->Tpl->Set('DOCTYPEID', $input['doctypeid']); + $this->app->Tpl->Set('VORAUSWAHLTYP', $input['vorauswahltyp']); + $this->app->Tpl->Set('VORAUSWAHLPARAMETER', $input['vorauswahlparameter']); + $this->app->Tpl->Set('KLAERFALL', $input['klaerfall']); + $this->app->Tpl->Set('KLAERGRUND', $input['klaergrund']); + $this->app->Tpl->Set('BEZUGTYP', $input['bezugtyp']); + $this->app->Tpl->Set('BEZUGPARAMETER', $input['bezugparameter']); + $this->app->Tpl->Set('VORAUSWAHLVORSCHLAG', $input['vorauswahlvorschlag']); + + } + +} diff --git a/www/pages/rechnung.php b/www/pages/rechnung.php index 202b9a81..46ce4573 100644 --- a/www/pages/rechnung.php +++ b/www/pages/rechnung.php @@ -283,7 +283,7 @@ class Rechnung extends GenRechnung $this->app->erp->RechnungProtokoll($invoiceId,'Rechnung manuell als bezahlt entfernt'); $this->app->DB->Update( "UPDATE rechnung - SET zahlungsstatus='offen',bezahlt_am = NULL, ist='0', + SET zahlungsstatus='offen',bezahlt_am = NULL, mahnwesen_internebemerkung=CONCAT(mahnwesen_internebemerkung,'\r\n','Manuell als bezahlt entfernt am ".date('d.m.Y')."') WHERE id='$invoiceId'" ); @@ -305,7 +305,7 @@ class Rechnung extends GenRechnung $id = $this->app->Secure->GetGET('id'); $this->app->erp->RechnungProtokoll($id,'Rechnung Stornierung rückgängig gemacht'); - $this->app->DB->Update("UPDATE rechnung SET status='freigegeben',zahlungsstatus='offen',schreibschutz=0,bezahlt_am = NULL, ist='0',mahnwesen_internebemerkung=CONCAT(mahnwesen_internebemerkung,'\r\n','Rechnung Stornierung rückgängig gemacht ".date('d.m.Y')."') WHERE id='$id'"); + $this->app->DB->Update("UPDATE rechnung SET status='freigegeben',zahlungsstatus='offen',schreibschutz=0,bezahlt_am = NULL, mahnwesen_internebemerkung=CONCAT(mahnwesen_internebemerkung,'\r\n','Rechnung Stornierung rückgängig gemacht ".date('d.m.Y')."') WHERE id='$id'"); $this->app->Location->execute("index.php?module=rechnung&action=edit&id=$id"); } @@ -324,7 +324,7 @@ class Rechnung extends GenRechnung $this->app->DB->Update( "UPDATE rechnung - SET zahlungsstatus='bezahlt',bezahlt_am = now(), ist=soll,mahnwesenfestsetzen='1', + SET zahlungsstatus='bezahlt',bezahlt_am = now(), mahnwesenfestsetzen='1', mahnwesen_internebemerkung=CONCAT(mahnwesen_internebemerkung,'\r\n','Manuell als bezahlt markiert am ".date('d.m.Y')."') WHERE id='$invoiceId'" ); @@ -887,29 +887,8 @@ class Rechnung extends GenRechnung $this->app->Tpl->Set('ANGEBOTFARBE',"grey"); $this->app->Tpl->Set('ANGEBOTTEXT',"Das Angebot wird bearbeitet und wurde noch nicht freigegeben und abgesendet!"); } - - - $this->app->Tpl->Set('ZAHLUNGEN',"Erst ab Version Enterprise verfügbar
"); - - if (!is_null($gutschrift)) { - - if((!empty($gutschrift)?count($gutschrift):0) > 0) - $this->app->Tpl->Add('ZAHLUNGEN',"
Zu dieser Rechnung existiert eine Gutschrift!
"); - else { - - if($auftragArr[0]['zahlungsstatus']!="bezahlt") - $this->app->Tpl->Add('ZAHLUNGEN',"
Diese Rechnung ist noch nicht komplett bezahlt!
"); - else - { - if(!empty($auftragArr[0]['bezahlt_am']) && $auftragArr[0]['bezahlt_am'] != '0000-00-00') - { - $this->app->Tpl->Add('ZAHLUNGEN',"
Diese Rechnung wurde am ".$this->app->String->Convert($auftragArr[0]['bezahlt_am'],"%1-%2-%3","%3.%2.%1")." bezahlt.
"); - }else{ - $this->app->Tpl->Add('ZAHLUNGEN',"
Diese Rechnung ist bezahlt.
"); - } - } - } - } + + $this->app->Tpl->Set('ZAHLUNGEN',$this->RechnungZahlung(true)); $this->app->Tpl->Set('RECHNUNGADRESSE',$this->Rechnungsadresse($auftragArr[0]['id'])); @@ -1582,6 +1561,9 @@ class Rechnung extends GenRechnung $this->app->erp->RechnungNeuberechnen($id); } + // ALWAYS + $this->app->erp->RechnungNeuberechnen($id); + if($cmd === 'dadown') { $erg['status'] = 0; @@ -1766,9 +1748,8 @@ class Rechnung extends GenRechnung $this->app->Tpl->Set('VORKASSE',''); } - - $saldo=$this->app->DB->Select("SELECT ist-skonto_gegeben FROM rechnung WHERE id='$id'"); - $this->app->Tpl->Set('LIVEIST',"$saldo"); + $ist = $this->app->erp->EUR($this->app->erp->GetSaldoDokument($id,'rechnung')['betrag']); + $this->app->Tpl->Set('ISTDB',$ist); if($schreibschutz=="1" && $this->app->erp->RechteVorhanden('rechnung','schreibschutz')) { @@ -1788,10 +1769,13 @@ class Rechnung extends GenRechnung $this->app->erp->RemoveReadonly('mahnwesenfestsetzen'); $this->app->erp->RemoveReadonly('mahnwesen'); $this->app->erp->RemoveReadonly('bezahlt_am'); +/* + 'ist' should not be edited manually + $this->app->erp->RemoveReadonly('ist'); if($this->app->erp->Firmendaten('mahnwesenmitkontoabgleich')!='1' || $this->app->DB->Select("SELECT mahnwesenfestsetzen FROM rechnung WHERE id='$id' LIMIT 1")==1) - $this->app->erp->RemoveReadonly('ist'); + $this->app->erp->RemoveReadonly('ist');*/ //$auftrag= $this->app->DB->Select("SELECT auftrag FROM rechnung WHERE id='$id' LIMIT 1"); @@ -1812,8 +1796,10 @@ class Rechnung extends GenRechnung } $speichern = $this->app->Secure->GetPOST('speichern'); + if($speichern!='' && $this->app->erp->RechteVorhanden('rechnung','mahnwesen')) { + $mahnwesen_datum = $this->app->Secure->GetPOST('mahnwesen_datum'); $bezahlt_am = $this->app->Secure->GetPOST('bezahlt_am'); $mahnwesen_gesperrt = $this->app->Secure->GetPOST('mahnwesen_gesperrt'); @@ -1839,17 +1825,16 @@ class Rechnung extends GenRechnung $alte_mahnstufe = $this->app->DB->Select("SELECT mahnwesen FROM rechnung WHERE id='$id' LIMIT 1"); if($alte_mahnstufe!=$mahnwesen) $versendet=0; else $versendet=1; - if($mahnwesenfestsetzen=='1') - { +/* if($mahnwesenfestsetzen=='1') + {*/ $this->app->DB->Update("UPDATE rechnung SET mahnwesen_internebemerkung='$mahnwesen_internebemerkung',zahlungsstatus='$zahlungsstatus',versendet_mahnwesen='$versendet', mahnwesen_gesperrt='$mahnwesen_gesperrt',mahnwesen_datum='$mahnwesen_datum', mahnwesenfestsetzen='$mahnwesenfestsetzen',internebemerkung='$internebemerkung', - mahnwesen='$mahnwesen',ist='$ist',skonto_gegeben='$skonto_gegeben',bezahlt_am='$bezahlt_am' WHERE id='$id' LIMIT 1"); - } else { + mahnwesen='$mahnwesen',skonto_gegeben='$skonto_gegeben',bezahlt_am='$bezahlt_am' WHERE id='$id' LIMIT 1"); +/* } else { $this->app->DB->Update("UPDATE rechnung SET mahnwesen='$mahnwesen', mahnwesenfestsetzen='$mahnwesenfestsetzen', mahnwesen_internebemerkung='$mahnwesen_internebemerkung', mahnwesen_gesperrt='$mahnwesen_gesperrt',mahnwesen_datum='$mahnwesen_datum' WHERE id='$id' LIMIT 1"); - } + }*/ } - if($status=='') $this->app->DB->Update("UPDATE rechnung SET status='angelegt' WHERE id='$id' LIMIT 1"); @@ -1962,6 +1947,7 @@ class Rechnung extends GenRechnung ' überein ' ); } + parent::RechnungEdit(); if($id > 0 && $this->app->DB->Select( sprintf( @@ -2076,7 +2062,8 @@ class Rechnung extends GenRechnung public function RechnungList() { - $this->app->DB->Update("UPDATE rechnung SET zahlungsstatus='offen' WHERE zahlungsstatus=''"); + + $this->app->DB->Update("UPDATE rechnung SET zahlungsstatus='offen' WHERE zahlungsstatus=''"); if($this->app->Secure->GetPOST('ausfuehren') && $this->app->erp->RechteVorhanden('rechnung', 'edit')) { @@ -2098,10 +2085,10 @@ class Rechnung extends GenRechnung switch($aktion) { case 'bezahlt': - $this->app->DB->Update("UPDATE rechnung SET zahlungsstatus='bezahlt', bezahlt_am = now(), ist=soll,mahnwesenfestsetzen='1',mahnwesen_internebemerkung=CONCAT(mahnwesen_internebemerkung,'\r\n','Manuell als bezahlt markiert am ".date('d.m.Y')."') WHERE id IN (".implode(', ',$auswahl).')'); + $this->app->DB->Update("UPDATE rechnung SET zahlungsstatus='bezahlt', bezahlt_am = now(), mahnwesenfestsetzen='1',mahnwesen_internebemerkung=CONCAT(mahnwesen_internebemerkung,'\r\n','Manuell als bezahlt markiert am ".date('d.m.Y')."') WHERE id IN (".implode(', ',$auswahl).')'); break; case 'offen': - $this->app->DB->Update("UPDATE rechnung SET zahlungsstatus='offen',bezahlt_am = NULL, ist='0',mahnwesen_internebemerkung=CONCAT(mahnwesen_internebemerkung,'\r\n','Manuell als bezahlt entfernt am ".date('d.m.Y')."') WHERE id IN (".implode(', ',$auswahl).')'); + $this->app->DB->Update("UPDATE rechnung SET zahlungsstatus='offen',bezahlt_am = NULL, mahnwesen_internebemerkung=CONCAT(mahnwesen_internebemerkung,'\r\n','Manuell als bezahlt entfernt am ".date('d.m.Y')."') WHERE id IN (".implode(', ',$auswahl).')'); break; case 'mail': $auswahl = $this->app->DB->SelectFirstCols( @@ -2258,6 +2245,28 @@ class Rechnung extends GenRechnung } } + // refresh all open items + $openids = $this->app->DB->SelectArr("SELECT id, waehrung from rechnung WHERE zahlungsstatus = 'offen'"); + + foreach ($openids as $openid) { + $saldo = $this->app->erp->GetSaldoDokument($openid['id'],'rechnung'); + + if (!empty($saldo)) { + if ($saldo['waehrung'] == $openid['waehrung']) { + $sql = "UPDATE + rechnung + SET + ist = ".$saldo['betrag']."+soll, + zahlungsstatus = IF(".$saldo['betrag']." = 0,'bezahlt','offen') + WHERE id=".$openid['id']; + $this->app->DB->Update($sql); + } + } + else { + $this->app->DB->Update("UPDATE rechnung SET ist = null WHERE id=".$openid['id']); + } + } + $this->app->Tpl->Set('UEBERSCHRIFT','Rechnungen'); $backurl = $this->app->Secure->GetGET('backurl'); @@ -2712,4 +2721,48 @@ class Rechnung extends GenRechnung return $this->app->DB->GetInsertID(); } + + + /** + * Build the html output for minidetail containing the payments + * @param bool $return + * + * @return string + */ + function RechnungZahlung($return=false) + { + $id = $this->app->Secure->GetGET('id'); + + $zahlungen = $this->app->erp->GetZahlungen($id,'rechnung'); + if (!empty($zahlungen)) { + $et = new EasyTable($this->app); + + $et->headings = array('Datum','Beleg','Betrag','Währung'); + + foreach ($zahlungen as $zahlung) { + $row = array( + $zahlung['datum'], + " + ".ucfirst($zahlung['doc_typ'])." + ".$zahlung['doc_info']." + ", + $zahlung['betrag'], + $zahlung['waehrung'] + ); + $et->AddRow($row); + } + + $salden = $this->app->erp->GetSaldenDokument($id,'rechnung'); + foreach ($salden as $saldo) { + $row = array( + '', + 'Saldo', + "".$saldo['betrag']."", + "".$saldo['waehrung']."" + ); + $et->AddRow($row); + } + return($et->DisplayNew('return',"")); + } + } } diff --git a/www/pages/welcome.php b/www/pages/welcome.php index e51eb61c..205d19f9 100644 --- a/www/pages/welcome.php +++ b/www/pages/welcome.php @@ -2241,7 +2241,7 @@ $this->app->Tpl->Add('TODOFORUSER',"".$tmp[$i]['aufgabe']. $this->app->Tpl->Add('TAB1',"Sie benutzen die kommerzielle Version von Xentral. Alle Rechte vorbehalten. Beachten Sie die Nutzungsbedinungen.

© Copyright by Xentral ERP Software GmbH Augsburg"); } else { - $this->app->Tpl->Add('TAB1','OpenXE is free open source software under AGPL-3.0 license, based on Xentral® by Xentral ERP Software GmbH.


Das Logo und der Link zur Homepage https://xentral.biz dürfen nicht entfernt werden.

© Copyright by OpenXE project & Xentral ERP Software GmbH Augsburg'); + $this->app->Tpl->Add('TAB1','OpenXE is free open source software under AGPL/EGPL license, based on Xentral® by Xentral ERP Software GmbH.


Das Logo und der Link zur Homepage https://xentral.biz dürfen nicht entfernt werden.

© Copyright by OpenXE project & Xentral ERP Software GmbH Augsburg'); } if($this->app->erp->isIoncube() && method_exists($this->app->erp, 'IoncubeProperty')) diff --git a/www/setup/setup.php b/www/setup/setup.php index bf3cced7..09566e91 100644 --- a/www/setup/setup.php +++ b/www/setup/setup.php @@ -371,7 +371,7 @@

Nutzen Sie unseren Update-Server um auch mit der Open-Source Version mit Updates versorgt zu sein.

--!>

-OpenXE is free open source software under AGPL-3.0 license, based on Xentral® by Xentral ERP Software GmbH.

+OpenXE is free open source software under AGPL/EGPL license, based on Xentral® by Xentral ERP Software GmbH.

"; } diff --git a/www/themes/new/templates/loginpage.tpl b/www/themes/new/templates/loginpage.tpl index 6c22e7eb..6509c5e9 100644 --- a/www/themes/new/templates/loginpage.tpl +++ b/www/themes/new/templates/loginpage.tpl @@ -39,7 +39,7 @@ diff --git a/www/widgets/_gen/widget.gen.gutschrift.php b/www/widgets/_gen/widget.gen.gutschrift.php index c2db558c..f53d6e44 100644 --- a/www/widgets/_gen/widget.gen.gutschrift.php +++ b/www/widgets/_gen/widget.gen.gutschrift.php @@ -1,300 +1,307 @@ -app = $app; - $this->parsetarget = $parsetarget; - $this->Form(); - } - - public function gutschriftDelete() - { - - $this->form->Execute("gutschrift","delete"); - - $this->gutschriftList(); - } - - function Edit() - { - $this->form->Edit(); - } - - function Copy() - { - $this->form->Copy(); - } - - public function Create() - { - $this->form->Create(); - } - - public function Search() - { - $this->app->Tpl->Set($this->parsetarget,"SUUUCHEEE"); - } - - public function Summary() - { - $this->app->Tpl->Set($this->parsetarget,"grosse Tabelle"); - } - - function Form() - { - $this->form = $this->app->FormHandler->CreateNew("gutschrift"); - $this->form->UseTable("gutschrift"); - $this->form->UseTemplate("gutschrift.tpl",$this->parsetarget); - - $field = new HTMLInput("lieferid","hidden","","","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("ansprechpartnerid","hidden","","","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("adresse","text","","20","","","","","","","pflicht","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("aktion","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("projekt","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("rechnungid","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("kundennummer_buchhaltung","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("ihrebestellnummer","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("internebezeichnung","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("lieferdatum","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("datum","text","","","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLCheckbox("stornorechnung","","","1","0","0"); - $this->form->NewField($field); - - $field = new HTMLCheckbox("schreibschutz","","","1","0","0"); - $this->form->NewField($field); - - $field = new HTMLCheckbox("nicht_umsatzmindernd","","","1","0","0"); - $this->form->NewField($field); - - $field = new HTMLInput("manuell_vorabbezahlt","text","","","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLTextarea("manuell_vorabbezahlt_hinweis",5,30,"","","","","0"); - $this->form->NewField($field); - - $field = new HTMLSelect("typ",0,"typ","","","0"); - $field->AddOption('Firma','firma'); - $field->AddOption('Herr','herr'); - $field->AddOption('Frau','frau'); - $this->form->NewField($field); - - $field = new HTMLInput("name","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - $this->form->AddMandatory("name","notempty","Pflichfeld!","MSGNAME"); - - $field = new HTMLInput("titel","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("ansprechpartner","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("abteilung","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("unterabteilung","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("adresszusatz","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("strasse","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("plz","text","","5","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("ort","text","","19","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("gln","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("telefon","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("telefax","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("email","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("anschreiben","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLTextarea("freitext",5,110,"","","","","0"); - $this->form->NewField($field); - - $field = new HTMLTextarea("bodyzusatz",5,110,"","","","","0"); - $this->form->NewField($field); - - $field = new HTMLSelect("zahlungsweise",0,"zahlungsweise","","","0"); - $field->AddOption('Kreditkarte','kreditkarte'); - $field->AddOption('Überweisung','ueberweisung'); - $field->AddOption('Bar','bar'); - $field->AddOption('PayPal','paypal'); - $this->form->NewField($field); - - $field = new HTMLInput("lieferbedingung","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("bearbeiter","text","","","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("vertrieb","text","","40","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("bearbeiter","text","","40","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLCheckbox("ohne_briefpapier","","","1","0","0"); - $this->form->NewField($field); - - $field = new HTMLCheckbox("ohne_artikeltext","","","1","0","0"); - $this->form->NewField($field); - - $field = new HTMLInput("bank_inhaber","text","","35","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("bank_institut","text","","35","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("bank_blz","text","","35","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("bank_konto","text","","35","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("paypalaccount","text","","35","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLSelect("kreditkarte_typ",0,"kreditkarte_typ","","","0"); - $this->form->NewField($field); - - $field = new HTMLInput("kreditkarte_inhaber","text","","35","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("kreditkarte_nummer","text","","35","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("kreditkarte_pruefnummer","text","","5","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLSelect("kreditkarte_monat",0,"kreditkarte_monat","","","0"); - $this->form->NewField($field); - - $field = new HTMLSelect("kreditkarte_jahr",0,"kreditkarte_jahr","","","0"); - $this->form->NewField($field); - - $field = new HTMLInput("zahlungszielskonto","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("rabatt","text","","4","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("rabatt1","text","","4","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("rabatt2","text","","4","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("rabatt3","text","","4","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("rabatt4","text","","4","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("rabatt5","text","","4","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLTextarea("internebemerkung",2,110,"","","","","0"); - $this->form->NewField($field); - - $field = new HTMLInput("ustid","text","","","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLSelect("ust_befreit",0,"ust_befreit","","","0"); - $field->AddOption('{|Inland|}','0'); - $field->AddOption('{|EU-Lieferung / Lieferschwelle|}','1'); - $field->AddOption('{|Export|}','2'); - $field->AddOption('{|Steuerfrei Inland|}','3'); - $this->form->NewField($field); - - $field = new HTMLCheckbox("keinsteuersatz","","","1","0","0"); - $this->form->NewField($field); - - $field = new HTMLCheckbox("ustbrief","","","1","0","0"); - $this->form->NewField($field); - - $field = new HTMLCheckbox("ustbrief_eingang","","","1","0","0"); - $this->form->NewField($field); - - $field = new HTMLInput("ustbrief_eingang_am","text","","35","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLSelect("anzeigesteuer",0,"anzeigesteuer","","","0"); - $field->AddOption('automatisch','0'); - $field->AddOption('netto','3'); - $field->AddOption('brutto','4'); - $this->form->NewField($field); - - $field = new HTMLInput("waehrung","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("sprache","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("kurs","text","","15","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("kostenstelle","text","","15","","","","","","","","0","",""); - $this->form->NewField($field); - - - } - -} - -?> \ No newline at end of file +app = $app; + $this->parsetarget = $parsetarget; + $this->Form(); + } + + public function gutschriftDelete() + { + + $this->form->Execute("gutschrift","delete"); + + $this->gutschriftList(); + } + + function Edit() + { + $this->form->Edit(); + } + + function Copy() + { + $this->form->Copy(); + } + + public function Create() + { + $this->form->Create(); + } + + public function Search() + { + $this->app->Tpl->Set($this->parsetarget,"SUUUCHEEE"); + } + + public function Summary() + { + $this->app->Tpl->Set($this->parsetarget,"grosse Tabelle"); + } + + function Form() + { + $this->form = $this->app->FormHandler->CreateNew("gutschrift"); + $this->form->UseTable("gutschrift"); + $this->form->UseTemplate("gutschrift.tpl",$this->parsetarget); + + $field = new HTMLInput("lieferid","hidden","","","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("ansprechpartnerid","hidden","","","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("adresse","text","","20","","","","","","","pflicht","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("aktion","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("projekt","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("rechnungid","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("kundennummer_buchhaltung","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("ihrebestellnummer","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("internebezeichnung","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("lieferdatum","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("datum","text","","","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLCheckbox("stornorechnung","","","1","0","0"); + $this->form->NewField($field); + + $field = new HTMLCheckbox("schreibschutz","","","1","0","0"); + $this->form->NewField($field); + + $field = new HTMLCheckbox("nicht_umsatzmindernd","","","1","0","0"); + $this->form->NewField($field); + + $field = new HTMLInput("manuell_vorabbezahlt","text","","","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLTextarea("manuell_vorabbezahlt_hinweis",5,30,"","","","","0"); + $this->form->NewField($field); + + $field = new HTMLSelect("typ",0,"typ","","","0"); + $field->AddOption('Firma','firma'); + $field->AddOption('Herr','herr'); + $field->AddOption('Frau','frau'); + $this->form->NewField($field); + + $field = new HTMLInput("name","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + $this->form->AddMandatory("name","notempty","Pflichfeld!","MSGNAME"); + + $field = new HTMLInput("titel","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("ansprechpartner","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("abteilung","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("unterabteilung","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("adresszusatz","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("strasse","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("plz","text","","5","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("ort","text","","19","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("gln","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("telefon","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("telefax","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("email","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("anschreiben","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLTextarea("freitext",5,110,"","","","","0"); + $this->form->NewField($field); + + $field = new HTMLTextarea("bodyzusatz",5,110,"","","","","0"); + $this->form->NewField($field); + + $field = new HTMLSelect("zahlungsweise",0,"zahlungsweise","","","0"); + $field->AddOption('Kreditkarte','kreditkarte'); + $field->AddOption('Überweisung','ueberweisung'); + $field->AddOption('Bar','bar'); + $field->AddOption('PayPal','paypal'); + $this->form->NewField($field); + + $field = new HTMLSelect("zahlungsstatus",0,"zahlungsstatus","","","0"); + $field->AddOption('offen','offen'); + $field->AddOption('bezahlt','bezahlt'); +// $field->AddOption('forderungsverlust','forderungsverlust'); +// $field->AddOption('abgebucht (bei Lastschrift)','abgebucht'); + $this->form->NewField($field); + + $field = new HTMLInput("lieferbedingung","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("bearbeiter","text","","","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("vertrieb","text","","40","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("bearbeiter","text","","40","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLCheckbox("ohne_briefpapier","","","1","0","0"); + $this->form->NewField($field); + + $field = new HTMLCheckbox("ohne_artikeltext","","","1","0","0"); + $this->form->NewField($field); + + $field = new HTMLInput("bank_inhaber","text","","35","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("bank_institut","text","","35","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("bank_blz","text","","35","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("bank_konto","text","","35","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("paypalaccount","text","","35","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLSelect("kreditkarte_typ",0,"kreditkarte_typ","","","0"); + $this->form->NewField($field); + + $field = new HTMLInput("kreditkarte_inhaber","text","","35","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("kreditkarte_nummer","text","","35","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("kreditkarte_pruefnummer","text","","5","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLSelect("kreditkarte_monat",0,"kreditkarte_monat","","","0"); + $this->form->NewField($field); + + $field = new HTMLSelect("kreditkarte_jahr",0,"kreditkarte_jahr","","","0"); + $this->form->NewField($field); + + $field = new HTMLInput("zahlungszielskonto","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("rabatt","text","","4","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("rabatt1","text","","4","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("rabatt2","text","","4","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("rabatt3","text","","4","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("rabatt4","text","","4","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("rabatt5","text","","4","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLTextarea("internebemerkung",2,110,"","","","","0"); + $this->form->NewField($field); + + $field = new HTMLInput("ustid","text","","","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLSelect("ust_befreit",0,"ust_befreit","","","0"); + $field->AddOption('{|Inland|}','0'); + $field->AddOption('{|EU-Lieferung / Lieferschwelle|}','1'); + $field->AddOption('{|Export|}','2'); + $field->AddOption('{|Steuerfrei Inland|}','3'); + $this->form->NewField($field); + + $field = new HTMLCheckbox("keinsteuersatz","","","1","0","0"); + $this->form->NewField($field); + + $field = new HTMLCheckbox("ustbrief","","","1","0","0"); + $this->form->NewField($field); + + $field = new HTMLCheckbox("ustbrief_eingang","","","1","0","0"); + $this->form->NewField($field); + + $field = new HTMLInput("ustbrief_eingang_am","text","","35","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLSelect("anzeigesteuer",0,"anzeigesteuer","","","0"); + $field->AddOption('automatisch','0'); + $field->AddOption('netto','3'); + $field->AddOption('brutto','4'); + $this->form->NewField($field); + + $field = new HTMLInput("waehrung","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("sprache","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("kurs","text","","15","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("kostenstelle","text","","15","","","","","","","","0","",""); + $this->form->NewField($field); + + + } + +} + +?> diff --git a/www/widgets/_gen/widget.gen.importvorlage.php b/www/widgets/_gen/widget.gen.importvorlage.php index ead82519..ffcb8cfe 100644 --- a/www/widgets/_gen/widget.gen.importvorlage.php +++ b/www/widgets/_gen/widget.gen.importvorlage.php @@ -79,6 +79,7 @@ class WidgetGenimportvorlage $field->AddOption('Wiedervorlagen (min. Angabe: datum_faellig, kundennummer,mitarbeiternummer,betreff)','wiedervorlagen'); $field->AddOption('Notizen (min. Angabe: datum,kundennummer,mitarbeiternummer,betreff)','notizen'); $field->AddOption('Kontenrahmen (min. Angabe: sachkonto,beschriftung,art)','kontorahmen'); + $field->AddOption('Kontoauszug','kontoauszug'); $this->form->NewField($field); $field = new HTMLInput("importerstezeilenummer","text","","15","","","","","","","","0","",""); diff --git a/www/widgets/_gen/widget.gen.rechnung.php b/www/widgets/_gen/widget.gen.rechnung.php index 159c6def..84170459 100644 --- a/www/widgets/_gen/widget.gen.rechnung.php +++ b/www/widgets/_gen/widget.gen.rechnung.php @@ -1,344 +1,344 @@ -app = $app; - $this->parsetarget = $parsetarget; - $this->Form(); - } - - public function rechnungDelete() - { - - $this->form->Execute("rechnung","delete"); - - $this->rechnungList(); - } - - function Edit() - { - $this->form->Edit(); - } - - function Copy() - { - $this->form->Copy(); - } - - public function Create() - { - $this->form->Create(); - } - - public function Search() - { - $this->app->Tpl->Set($this->parsetarget,"SUUUCHEEE"); - } - - public function Summary() - { - $this->app->Tpl->Set($this->parsetarget,"grosse Tabelle"); - } - - function Form() - { - $this->form = $this->app->FormHandler->CreateNew("rechnung"); - $this->form->UseTable("rechnung"); - $this->form->UseTemplate("rechnung.tpl",$this->parsetarget); - - $field = new HTMLInput("lieferid","hidden","","","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("ansprechpartnerid","hidden","","","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("adresse","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("projekt","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("aktion","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("auftragid","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("kundennummer_buchhaltung","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("ihrebestellnummer","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("internebezeichnung","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("lieferdatum","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("lieferschein","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("datum","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLCheckbox("doppel","","","1","0","0"); - $this->form->NewField($field); - - $field = new HTMLCheckbox("schreibschutz","","","1","0","0"); - $this->form->NewField($field); - - $field = new HTMLCheckbox("abweichendebezeichnung","","","1","0","0"); - $this->form->NewField($field); - - $field = new HTMLCheckbox("mahnwesenfestsetzen","","","1","0","0"); - $this->form->NewField($field); - - $field = new HTMLSelect("zahlungsstatus",0,"zahlungsstatus","","","0"); - $field->AddOption('offen','offen'); - $field->AddOption('bezahlt','bezahlt'); - $field->AddOption('forderungsverlust','forderungsverlust'); - $field->AddOption('abgebucht (bei Lastschrift)','abgebucht'); - $this->form->NewField($field); - - $field = new HTMLInput("bezahlt_am","text","","10","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("ist","text","","10","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("skonto_gegeben","text","","10","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLSelect("mahnwesen",0,"mahnwesen","","","0"); - $field->AddOption('',''); - $field->AddOption('Zahlungserinnerung','zahlungserinnerung'); - $field->AddOption('Mahnung 1','mahnung1'); - $field->AddOption('Mahnung 2','mahnung2'); - $field->AddOption('Mahnung 3','mahnung3'); - $field->AddOption('Inkasso','inkasso'); - $field->AddOption('Forderungsverlust','forderungsverlust'); - $this->form->NewField($field); - - $field = new HTMLInput("mahnwesen_datum","text","","10","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLCheckbox("mahnwesen_gesperrt","","","1","0","0"); - $this->form->NewField($field); - - $field = new HTMLTextarea("mahnwesen_internebemerkung",4,60,"","","","","0"); - $this->form->NewField($field); - - $field = new HTMLSelect("typ",0,"typ","","","0"); - $field->AddOption('Firma','firma'); - $field->AddOption('Herr','herr'); - $field->AddOption('Frau','frau'); - $this->form->NewField($field); - - $field = new HTMLInput("name","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - $this->form->AddMandatory("name","notempty","Pflichfeld!","MSGNAME"); - - $field = new HTMLInput("titel","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("ansprechpartner","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("abteilung","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("unterabteilung","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("adresszusatz","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("strasse","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("plz","text","","5","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("ort","text","","19","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("telefon","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("telefax","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("email","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("anschreiben","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLTextarea("freitext",5,110,"","","","","0"); - $this->form->NewField($field); - - $field = new HTMLTextarea("bodyzusatz",5,110,"","","","","0"); - $this->form->NewField($field); - - $field = new HTMLSelect("zahlungsweise",0,"zahlungsweise","","","0"); - $field->AddOption('Rechnung','rechnung'); - $field->AddOption('Vorkasse','vorkasse'); - $field->AddOption('Nachnahme','nachnahme'); - $field->AddOption('Kreditkarte','kreditkarte'); - $field->AddOption('Einzugsermaechtigung','einzugsermaechtigung'); - $field->AddOption('Bar','bar'); - $field->AddOption('PayPal','paypal'); - $this->form->NewField($field); - - $field = new HTMLInput("lieferbedingung","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("buchhaltung","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("vertrieb","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("bearbeiter","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLCheckbox("ohne_briefpapier","","","1","0","0"); - $this->form->NewField($field); - - $field = new HTMLCheckbox("ohne_artikeltext","","","1","0","0"); - $this->form->NewField($field); - - $field = new HTMLInput("gln","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("zahlungszieltage","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("zahlungszieltageskonto","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("einzugsdatum","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("bank_inhaber","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("bank_institut","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("bank_blz","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("bank_konto","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLSelect("kreditkarte_typ",0,"kreditkarte_typ","","","0"); - $this->form->NewField($field); - - $field = new HTMLInput("kreditkarte_inhaber","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("kreditkarte_nummer","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("kreditkarte_pruefnummer","text","","5","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLSelect("kreditkarte_monat",0,"kreditkarte_monat","","","0"); - $this->form->NewField($field); - - $field = new HTMLSelect("kreditkarte_jahr",0,"kreditkarte_jahr","","","0"); - $this->form->NewField($field); - - $field = new HTMLInput("zahlungszielskonto","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("rabatt","text","","4","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("rabatt1","text","","4","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("rabatt2","text","","4","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("rabatt3","text","","4","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("rabatt4","text","","4","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("rabatt5","text","","4","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLTextarea("internebemerkung",2,110,"","","","","0"); - $this->form->NewField($field); - - $field = new HTMLInput("ustid","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLSelect("ust_befreit",0,"ust_befreit","","","0"); - $field->AddOption('{|Inland|}','0'); - $field->AddOption('{|EU-Lieferung / Lieferschwelle|}','1'); - $field->AddOption('{|Export|}','2'); - $field->AddOption('{|Steuerfrei Inland|}','3'); - $this->form->NewField($field); - - $field = new HTMLCheckbox("keinsteuersatz","","","1","0","0"); - $this->form->NewField($field); - - $field = new HTMLCheckbox("ustbrief","","","1","0","0"); - $this->form->NewField($field); - - $field = new HTMLCheckbox("ustbrief_eingang","","","1","0","0"); - $this->form->NewField($field); - - $field = new HTMLInput("ustbrief_eingang_am","text","","","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLSelect("anzeigesteuer",0,"anzeigesteuer","","","0"); - $field->AddOption('automatisch','0'); - $field->AddOption('netto','3'); - $field->AddOption('brutto','4'); - $this->form->NewField($field); - - $field = new HTMLInput("waehrung","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("sprache","text","","30","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("kurs","text","","15","","","","","","","","0","",""); - $this->form->NewField($field); - - $field = new HTMLInput("kostenstelle","text","","15","","","","","","","","0","",""); - $this->form->NewField($field); - - - } - -} - -?> \ No newline at end of file +app = $app; + $this->parsetarget = $parsetarget; + $this->Form(); + } + + public function rechnungDelete() + { + + $this->form->Execute("rechnung","delete"); + + $this->rechnungList(); + } + + function Edit() + { + $this->form->Edit(); + } + + function Copy() + { + $this->form->Copy(); + } + + public function Create() + { + $this->form->Create(); + } + + public function Search() + { + $this->app->Tpl->Set($this->parsetarget,"SUUUCHEEE"); + } + + public function Summary() + { + $this->app->Tpl->Set($this->parsetarget,"grosse Tabelle"); + } + + function Form() + { + $this->form = $this->app->FormHandler->CreateNew("rechnung"); + $this->form->UseTable("rechnung"); + $this->form->UseTemplate("rechnung.tpl",$this->parsetarget); + + $field = new HTMLInput("lieferid","hidden","","","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("ansprechpartnerid","hidden","","","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("adresse","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("projekt","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("aktion","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("auftragid","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("kundennummer_buchhaltung","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("ihrebestellnummer","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("internebezeichnung","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("lieferdatum","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("lieferschein","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("datum","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLCheckbox("doppel","","","1","0","0"); + $this->form->NewField($field); + + $field = new HTMLCheckbox("schreibschutz","","","1","0","0"); + $this->form->NewField($field); + + $field = new HTMLCheckbox("abweichendebezeichnung","","","1","0","0"); + $this->form->NewField($field); + + $field = new HTMLCheckbox("mahnwesenfestsetzen","","","1","0","0"); + $this->form->NewField($field); + + $field = new HTMLSelect("zahlungsstatus",0,"zahlungsstatus","","","0"); + $field->AddOption('offen','offen'); + $field->AddOption('bezahlt','bezahlt'); +// $field->AddOption('forderungsverlust','forderungsverlust'); +// $field->AddOption('abgebucht (bei Lastschrift)','abgebucht'); + $this->form->NewField($field); + + $field = new HTMLInput("bezahlt_am","text","","10","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("ist","text","","10","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("skonto_gegeben","text","","10","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLSelect("mahnwesen",0,"mahnwesen","","","0"); + $field->AddOption('',''); + $field->AddOption('Zahlungserinnerung','zahlungserinnerung'); + $field->AddOption('Mahnung 1','mahnung1'); + $field->AddOption('Mahnung 2','mahnung2'); + $field->AddOption('Mahnung 3','mahnung3'); + $field->AddOption('Inkasso','inkasso'); + $field->AddOption('Forderungsverlust','forderungsverlust'); + $this->form->NewField($field); + + $field = new HTMLInput("mahnwesen_datum","text","","10","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLCheckbox("mahnwesen_gesperrt","","","1","0","0"); + $this->form->NewField($field); + + $field = new HTMLTextarea("mahnwesen_internebemerkung",4,60,"","","","","0"); + $this->form->NewField($field); + + $field = new HTMLSelect("typ",0,"typ","","","0"); + $field->AddOption('Firma','firma'); + $field->AddOption('Herr','herr'); + $field->AddOption('Frau','frau'); + $this->form->NewField($field); + + $field = new HTMLInput("name","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + $this->form->AddMandatory("name","notempty","Pflichfeld!","MSGNAME"); + + $field = new HTMLInput("titel","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("ansprechpartner","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("abteilung","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("unterabteilung","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("adresszusatz","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("strasse","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("plz","text","","5","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("ort","text","","19","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("telefon","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("telefax","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("email","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("anschreiben","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLTextarea("freitext",5,110,"","","","","0"); + $this->form->NewField($field); + + $field = new HTMLTextarea("bodyzusatz",5,110,"","","","","0"); + $this->form->NewField($field); + + $field = new HTMLSelect("zahlungsweise",0,"zahlungsweise","","","0"); + $field->AddOption('Rechnung','rechnung'); + $field->AddOption('Vorkasse','vorkasse'); + $field->AddOption('Nachnahme','nachnahme'); + $field->AddOption('Kreditkarte','kreditkarte'); + $field->AddOption('Einzugsermaechtigung','einzugsermaechtigung'); + $field->AddOption('Bar','bar'); + $field->AddOption('PayPal','paypal'); + $this->form->NewField($field); + + $field = new HTMLInput("lieferbedingung","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("buchhaltung","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("vertrieb","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("bearbeiter","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLCheckbox("ohne_briefpapier","","","1","0","0"); + $this->form->NewField($field); + + $field = new HTMLCheckbox("ohne_artikeltext","","","1","0","0"); + $this->form->NewField($field); + + $field = new HTMLInput("gln","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("zahlungszieltage","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("zahlungszieltageskonto","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("einzugsdatum","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("bank_inhaber","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("bank_institut","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("bank_blz","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("bank_konto","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLSelect("kreditkarte_typ",0,"kreditkarte_typ","","","0"); + $this->form->NewField($field); + + $field = new HTMLInput("kreditkarte_inhaber","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("kreditkarte_nummer","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("kreditkarte_pruefnummer","text","","5","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLSelect("kreditkarte_monat",0,"kreditkarte_monat","","","0"); + $this->form->NewField($field); + + $field = new HTMLSelect("kreditkarte_jahr",0,"kreditkarte_jahr","","","0"); + $this->form->NewField($field); + + $field = new HTMLInput("zahlungszielskonto","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("rabatt","text","","4","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("rabatt1","text","","4","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("rabatt2","text","","4","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("rabatt3","text","","4","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("rabatt4","text","","4","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("rabatt5","text","","4","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLTextarea("internebemerkung",2,110,"","","","","0"); + $this->form->NewField($field); + + $field = new HTMLInput("ustid","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLSelect("ust_befreit",0,"ust_befreit","","","0"); + $field->AddOption('{|Inland|}','0'); + $field->AddOption('{|EU-Lieferung / Lieferschwelle|}','1'); + $field->AddOption('{|Export|}','2'); + $field->AddOption('{|Steuerfrei Inland|}','3'); + $this->form->NewField($field); + + $field = new HTMLCheckbox("keinsteuersatz","","","1","0","0"); + $this->form->NewField($field); + + $field = new HTMLCheckbox("ustbrief","","","1","0","0"); + $this->form->NewField($field); + + $field = new HTMLCheckbox("ustbrief_eingang","","","1","0","0"); + $this->form->NewField($field); + + $field = new HTMLInput("ustbrief_eingang_am","text","","","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLSelect("anzeigesteuer",0,"anzeigesteuer","","","0"); + $field->AddOption('automatisch','0'); + $field->AddOption('netto','3'); + $field->AddOption('brutto','4'); + $this->form->NewField($field); + + $field = new HTMLInput("waehrung","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("sprache","text","","30","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("kurs","text","","15","","","","","","","","0","",""); + $this->form->NewField($field); + + $field = new HTMLInput("kostenstelle","text","","15","","","","","","","","0","",""); + $this->form->NewField($field); + + + } + +} + +?> diff --git a/www/widgets/templates/_gen/gutschrift.tpl b/www/widgets/templates/_gen/gutschrift.tpl index d5b38ef9..0663d801 100644 --- a/www/widgets/templates/_gen/gutschrift.tpl +++ b/www/widgets/templates/_gen/gutschrift.tpl @@ -61,7 +61,7 @@
- + + +
+ {|Zahlungsstatus|} + + + + + + + + + +
{|Zahlungsstatus|}:[ZAHLUNGSSTATUS][MSGZAHLUNGSSTATUS] +
+ + + + + + + + + +
+ {|SOLL|}: + + [SOLL] +
+ {|FEHLT|}: + + [ISTDB] +
+
+
diff --git a/www/widgets/templates/_gen/rechnung.tpl b/www/widgets/templates/_gen/rechnung.tpl index 8fac1f52..d6ec54ff 100644 --- a/www/widgets/templates/_gen/rechnung.tpl +++ b/www/widgets/templates/_gen/rechnung.tpl @@ -1,433 +1,564 @@ - - [SAVEPAGEREALLY]
- - - - -
-[MESSAGE] -
-[LIEFERID][MSGLIEFERID] -[ANSPRECHPARTNERID][MSGANSPRECHPARTNERID] -[FORMHANDLEREVENT] - - - -
- - - - - - - -
 Rechnung [NUMMER][KUNDE][RABATTANZEIGE][ICONMENU] [SAVEBUTTON]
-
- - -
-
-
{|Allgemein|} - - - - - [INTERNET] - - - - - - - - - - -
{|Kunde|}:[ADRESSE][MSGADRESSE]  -[BUTTON_UEBERNEHMEN] -
{|Projekt|}:[PROJEKTAUTOSTART][PROJEKT][MSGPROJEKT][PROJEKTAUTOEND]
[BEZEICHNUNGAKTIONSCODE]:[AKTION][MSGAKTION]
{|Status|}:[STATUS]
{|Auftrag|}:[AUFTRAGID][MSGAUFTRAGID]
{|Debitorennummer|}:[KUNDENNUMMER_BUCHHALTUNG][MSGKUNDENNUMMER_BUCHHALTUNG]
{|Ihre Bestellnummer|}:[IHREBESTELLNUMMER][MSGIHREBESTELLNUMMER]
{|Interne Bezeichnung|}:[INTERNEBEZEICHNUNG][MSGINTERNEBEZEICHNUNG]
{|Lieferdatum|}:[LIEFERDATUM][MSGLIEFERDATUM]
{|Lieferschein|}:[LIEFERSCHEINAUTOSTART][LIEFERSCHEIN][MSGLIEFERSCHEIN][LIEFERSCHEINAUTOEND]
{|Datum|}:[DATUM][MSGDATUM]
{|Rechnungskopie|}:[DOPPEL][MSGDOPPEL] 
{|Schreibschutz|}:[SCHREIBSCHUTZ][MSGSCHREIBSCHUTZ] 
[ABWEICHENDEBEZEICHNUNGBESCHRIFTUNG]:[ABWEICHENDEBEZEICHNUNG][MSGABWEICHENDEBEZEICHNUNG] 
-
-
- - - -
-[MAHNWESENIF] -
{|Mahnwesen|} - - - - - -
Alle Einstellungen manuell festsetzen: [MAHNWESENFESTSETZEN][MSGMAHNWESENFESTSETZEN] 

{|Zahlungsstatus|}:[ZAHLUNGSSTATUS][MSGZAHLUNGSSTATUS] Bezahlt am: [BEZAHLT_AM][MSGBEZAHLT_AM] -
- - - - - -
{|SOLL|}:[SOLL]
{|IST|}:[IST][MSGIST] (manuelle Eingabe)
{|IST|}: -[LIVEIST] 
{|Skonto gegeben|}:[SKONTO_GEGEBEN][MSGSKONTO_GEGEBEN]  (als Geldbetrag)
- - - - - -
{|Mahnstufe|}:[MAHNWESEN][MSGMAHNWESEN] -
{|Mahndatum|}:[MAHNWESEN_DATUM][MSGMAHNWESEN_DATUM]
{|Sperre|}:[MAHNWESEN_GESPERRT][MSGMAHNWESEN_GESPERRT] (nicht im Mahnwesen)
{|Bemerkung|}:[MAHNWESEN_INTERNEBEMERKUNG][MSGMAHNWESEN_INTERNEBEMERKUNG]
-
-[MAHNWESENELSE] -[MAHNWESENENDIF] - - -
-
- -
-
-
-
- -
{|Stammdaten|} - - - - - - - - - - [VORBUNDESSTAAT][NACHBUNDESSTAAT] - -
{|Typ|}:[TYP][MSGTYP]
{|Name|}:[NAME][MSGNAME]
{|Titel|}:[TITEL][MSGTITEL]
{|Ansprechpartner|}:[ANSPRECHPARTNER][MSGANSPRECHPARTNER]
{|Abteilung|}:[ABTEILUNG][MSGABTEILUNG]
{|Unterabteilung|}:[UNTERABTEILUNG][MSGUNTERABTEILUNG]
{|Adresszusatz|}:[ADRESSZUSATZ][MSGADRESSZUSATZ]
{|Straße|}:[STRASSE][MSGSTRASSE]
{|PLZ/Ort|}:[PLZ][MSGPLZ] [ORT][MSGORT]
[EPROO_SELECT_BUNDESSTAAT]
{|Land|}:[EPROO_SELECT_LAND]
- - - - - - - -
{|Telefon|}:[TELEFON][MSGTELEFON]
{|Telefax|}:[TELEFAX][MSGTELEFAX]
{|E-Mail|}:[EMAIL][MSGEMAIL]
Anschreiben[ANSCHREIBEN][MSGANSCHREIBEN]
[LIEFERADRESSEPOPUP] [ANSPRECHPARTNERPOPUP]
-
- -
-
- -
-
- -
-
-
-
- -
{|Freitext|} - [FREITEXT][MSGFREITEXT] -
- + +
+ [MESSAGE] + + [LIEFERID][MSGLIEFERID] + [ANSPRECHPARTNERID][MSGANSPRECHPARTNERID] + [FORMHANDLEREVENT] + +
+
+
+
+ + + + + + + +
 Rechnung [NUMMER][KUNDE][RABATTANZEIGE][ICONMENU] [SAVEBUTTON]
+
+
+
+
+
+
+
+
+
+ {|Allgemein|} + + + + + + + + + + + + + + + + + + [INTERNET] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
{|Kunde|}:[ADRESSE][MSGADRESSE]  + [BUTTON_UEBERNEHMEN] +
{|Projekt|}:[PROJEKTAUTOSTART][PROJEKT][MSGPROJEKT][PROJEKTAUTOEND]
[BEZEICHNUNGAKTIONSCODE]:[AKTION][MSGAKTION]
{|Status|}:[STATUS]
{|Auftrag|}:[AUFTRAGID][MSGAUFTRAGID]
{|Debitorennummer|}:[KUNDENNUMMER_BUCHHALTUNG][MSGKUNDENNUMMER_BUCHHALTUNG]
{|Ihre Bestellnummer|}:[IHREBESTELLNUMMER][MSGIHREBESTELLNUMMER]
{|Interne Bezeichnung|}:[INTERNEBEZEICHNUNG][MSGINTERNEBEZEICHNUNG]
{|Lieferdatum|}:[LIEFERDATUM][MSGLIEFERDATUM]
{|Lieferschein|}:[LIEFERSCHEINAUTOSTART][LIEFERSCHEIN][MSGLIEFERSCHEIN][LIEFERSCHEINAUTOEND]
{|Datum|}:[DATUM][MSGDATUM]
{|Rechnungskopie|}:[DOPPEL][MSGDOPPEL] 
{|Schreibschutz|}:[SCHREIBSCHUTZ][MSGSCHREIBSCHUTZ] 
[ABWEICHENDEBEZEICHNUNGBESCHRIFTUNG]:[ABWEICHENDEBEZEICHNUNG][MSGABWEICHENDEBEZEICHNUNG] 
+
+
+
+
+
+ [MAHNWESENIF] +
+ {|Zahlungsstatus|} + + + + + + + + + +
{|Zahlungsstatus|}:[ZAHLUNGSSTATUS][MSGZAHLUNGSSTATUS] +
+ + + + + + + + + +
+ {|SOLL|}: + + [SOLL] +
+ {|FEHLT|}: + + [ISTDB] +
+
+ + + + + + + + + + + + + + + + + +
{|Mahnstufe|}:[MAHNWESEN][MSGMAHNWESEN] +
{|Mahndatum|}:[MAHNWESEN_DATUM][MSGMAHNWESEN_DATUM]
{|Sperre|}:[MAHNWESEN_GESPERRT][MSGMAHNWESEN_GESPERRT] (nicht im Mahnwesen)
{|Bemerkung|}:[MAHNWESEN_INTERNEBEMERKUNG][MSGMAHNWESEN_INTERNEBEMERKUNG]
+
+ [MAHNWESENELSE] + [MAHNWESENENDIF] +
+
+
+
+
+
+
+
+
+ {|Stammdaten|} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + [VORBUNDESSTAAT] + + + + + [NACHBUNDESSTAAT] + + + + +
{|Typ|}:[TYP][MSGTYP]
{|Name|}:[NAME][MSGNAME]
{|Titel|}:[TITEL][MSGTITEL]
{|Ansprechpartner|}:[ANSPRECHPARTNER][MSGANSPRECHPARTNER]
{|Abteilung|}:[ABTEILUNG][MSGABTEILUNG]
{|Unterabteilung|}:[UNTERABTEILUNG][MSGUNTERABTEILUNG]
{|Adresszusatz|}:[ADRESSZUSATZ][MSGADRESSZUSATZ]
{|Straße|}:[STRASSE][MSGSTRASSE]
{|PLZ/Ort|}:[PLZ][MSGPLZ] [ORT][MSGORT]
[EPROO_SELECT_BUNDESSTAAT]
{|Land|}:[EPROO_SELECT_LAND]
+ + + + + + + + + + + + + + + + + + + + + +
{|Telefon|}:[TELEFON][MSGTELEFON]
{|Telefax|}:[TELEFAX][MSGTELEFAX]
{|E-Mail|}:[EMAIL][MSGEMAIL]
Anschreiben[ANSCHREIBEN][MSGANSCHREIBEN]
[LIEFERADRESSEPOPUP] [ANSPRECHPARTNERPOPUP]
+
+
+
+
+
+
+
+
+
+
+ {|Freitext|} + [FREITEXT][MSGFREITEXT] +
+
+
+
+
+
+ {|Kopftext|} + [BODYZUSATZ][MSGBODYZUSATZ] +
+
+
+
+
+
+
+
+
+
+ {|Rechnung|} + + + + + + + + + + + + + + + + + + + + + + + + + + +
{|Zahlungsweise|}:[ZAHLUNGSWEISE][MSGZAHLUNGSWEISE]
[LIEFERBEDINGUNG][MSGLIEFERBEDINGUNG]
{|Vertrieb|}:[VERTRIEB][MSGVERTRIEB] [VERTRIEBBUTTON]
{|Bearbeiter|}:[BEARBEITER][MSGBEARBEITER] [INNENDIENSTBUTTON]
{|Kein Briefpapier und Logo|}:[OHNE_BRIEFPAPIER][MSGOHNE_BRIEFPAPIER]
{|Artikeltexte ausblenden|}:[OHNE_ARTIKELTEXT][MSGOHNE_ARTIKELTEXT]
+
+
+
+
+
+ +
+ {|Sonstiges|} + + + + + +
{|GLN|}:[GLN][MSGGLN]
+
+
+
+ {|Rechnung|} + + + + + + + + + +
{|Zahlungsziel (in Tagen)|}:[ZAHLUNGSZIELTAGE][MSGZAHLUNGSZIELTAGE]
{|Zahlungsziel Skonto (in Tagen)|}:[ZAHLUNGSZIELTAGESKONTO][MSGZAHLUNGSZIELTAGESKONTO]
+
+
+
+
+ Einzugsermächtigung + + + + + + +
{|Einzugsdatum (frühestens)|}:[EINZUGSDATUM][MSGEINZUGSDATUM]
+
+
+
+
+
+ {|Kreditkarte|} + + + + + + + + + + + + + + + + + + + + + +
{|Kreditkarte|}:[KREDITKARTE_TYP][MSGKREDITKARTE_TYP]
{|Karteninhaber|}:[KREDITKARTE_INHABER][MSGKREDITKARTE_INHABER]
{|Kreditkartennummer|}:[KREDITKARTE_NUMMER][MSGKREDITKARTE_NUMMER]
{|Prüfnummer|}:[KREDITKARTE_PRUEFNUMMER][MSGKREDITKARTE_PRUEFNUMMER]
{|Gültig bis|}: + [KREDITKARTE_MONAT][MSGKREDITKARTE_MONAT]  + [KREDITKARTE_JAHR][MSGKREDITKARTE_JAHR]  +
+
+
+
+
+ {|Skonto (nur bei Rechnung und Lastschrift)|} + + + + + +
{|Skonto|}:[ZAHLUNGSZIELSKONTO][MSGZAHLUNGSZIELSKONTO]
+
+
+ [STARTDISABLEVERBAND] +
+
+ {|Verband|} + + [VERBANDINFOSTART] + + + + + [VERBANDINFOENDE] + + + + + + + + + + + + + + + + + + + + + +
{|Verband / Gruppe|}:[VERBAND]
{|Rabatt|}:Grund %1 in %2 in %3 in %4 in %5 in %
[RABATT][MSGRABATT][RABATT1][MSGRABATT1][RABATT2][MSGRABATT2][RABATT3][MSGRABATT3][RABATT4][MSGRABATT4][RABATT5][MSGRABATT5]
Information:
[VERBANDINFO]
+
+
+ [ENDEDISABLEVERBAND] +
+
+
+
+
+
+
+
+
+ {|Interne Bemerkung|} + [INTERNEBEMERKUNG][MSGINTERNEBEMERKUNG] +
+
+
+
+
+
+
+
+
+
+ UST-Prüfung + + + + + + + + + + + + + + + + + + + + + +
{|UST ID|}:[USTID][MSGUSTID]
{|Besteuerung|}:[UST_BEFREIT][MSGUST_BEFREIT] [KEINSTEUERSATZ][MSGKEINSTEUERSATZ] {|ohne Hinweis bei EU oder Export|}
{|Brief bestellt|}:[USTBRIEF][MSGUSTBRIEF]
{|Brief Eingang|}:[USTBRIEF_EINGANG][MSGUSTBRIEF_EINGANG]
{|Brief Eingang am|}:[USTBRIEF_EINGANG_AM][MSGUSTBRIEF_EINGANG_AM]
+
+
+
+
+
+
+ {|Einstellung|} + + + + + + + + + + + + + + + + + + + + + +
{|Anzeige Steuer|}:[ANZEIGESTEUER][MSGANZEIGESTEUER]
{|Währung|}:[WAEHRUNG][MSGWAEHRUNG]
{|Sprache|}:[SPRACHE][MSGSPRACHE]
{|Wechselkurs|}:[KURS][MSGKURS]
{|Kostenstelle|}:[KOSTENSTELLE][MSGKOSTENSTELLE]
+
+
+
+
+
+

+ + + + +
+ +
+
+ +
+
+ + + + + +
+ + + + + + + +
Rechnung [NUMMER][KUNDE][RABATTANZEIGE][ICONMENU2]
+ [POS] +
-
- - -
-
- -
{|Kopftext|} - [BODYZUSATZ][MSGBODYZUSATZ] -
- -
-
-
- - -
-
-
-
- -
{|Rechnung|} - - - - - - - - -
{|Zahlungsweise|}:[ZAHLUNGSWEISE][MSGZAHLUNGSWEISE]
[LIEFERBEDINGUNG][MSGLIEFERBEDINGUNG]
{|Vertrieb|}:[VERTRIEB][MSGVERTRIEB] [VERTRIEBBUTTON]
{|Bearbeiter|}:[BEARBEITER][MSGBEARBEITER] [INNENDIENSTBUTTON]
{|Kein Briefpapier und Logo|}:[OHNE_BRIEFPAPIER][MSGOHNE_BRIEFPAPIER]
{|Artikeltexte ausblenden|}:[OHNE_ARTIKELTEXT][MSGOHNE_ARTIKELTEXT]
-
- -
-
- -
-
- - - -
{|Sonstiges|} -
{|GLN|}:[GLN][MSGGLN]
-
- - -
-
{|Rechnung|} - - - -
{|Zahlungsziel (in Tagen)|}:[ZAHLUNGSZIELTAGE][MSGZAHLUNGSZIELTAGE]
{|Zahlungsziel Skonto (in Tagen)|}:[ZAHLUNGSZIELTAGESKONTO][MSGZAHLUNGSZIELTAGESKONTO]
-
-
- - -
-
Einzugsermächtigung - - - -
{|Einzugsdatum (frühestens)|}:[EINZUGSDATUM][MSGEINZUGSDATUM]
-
- -
- -
-
- -
-
{|Kreditkarte|} - - - - - - - - - - - -
{|Kreditkarte|}:[KREDITKARTE_TYP][MSGKREDITKARTE_TYP]
{|Karteninhaber|}:[KREDITKARTE_INHABER][MSGKREDITKARTE_INHABER]
{|Kreditkartennummer|}:[KREDITKARTE_NUMMER][MSGKREDITKARTE_NUMMER]
{|Prüfnummer|}:[KREDITKARTE_PRUEFNUMMER][MSGKREDITKARTE_PRUEFNUMMER]
{|Gültig bis|}: - [KREDITKARTE_MONAT][MSGKREDITKARTE_MONAT]  - [KREDITKARTE_JAHR][MSGKREDITKARTE_JAHR]  -
- -
-
- - -
-
{|Skonto (nur bei Rechnung und Lastschrift)|} - - -
{|Skonto|}:[ZAHLUNGSZIELSKONTO][MSGZAHLUNGSZIELSKONTO]
-
-
- - -[STARTDISABLEVERBAND] -
-
{|Verband|} - -[VERBANDINFOSTART][VERBANDINFOENDE] - - - - - - - - - -
{|Verband / Gruppe|}:[VERBAND]
{|Rabatt|}:Grund %1 in %2 in %3 in %4 in %5 in %
[RABATT][MSGRABATT][RABATT1][MSGRABATT1][RABATT2][MSGRABATT2][RABATT3][MSGRABATT3][RABATT4][MSGRABATT4][RABATT5][MSGRABATT5]
Information:
[VERBANDINFO]
-
-
-[ENDEDISABLEVERBAND] - -
-
-
-
- -
-
-
-
- - -
{|Interne Bemerkung|} -[INTERNEBEMERKUNG][MSGINTERNEBEMERKUNG] -
- -
-
-
-
- - -
-
-
-
- - -
UST-Prüfung - - - - - - - -
{|UST ID|}:[USTID][MSGUSTID]
{|Besteuerung|}:[UST_BEFREIT][MSGUST_BEFREIT] [KEINSTEUERSATZ][MSGKEINSTEUERSATZ] {|ohne Hinweis bei EU oder Export|}
{|Brief bestellt|}:[USTBRIEF][MSGUSTBRIEF]
{|Brief Eingang|}:[USTBRIEF_EINGANG][MSGUSTBRIEF_EINGANG]
{|Brief Eingang am|}:[USTBRIEF_EINGANG_AM][MSGUSTBRIEF_EINGANG_AM]
-
-
-
- -
-
- -
{|Einstellung|} - - - - - - -
{|Anzeige Steuer|}:[ANZEIGESTEUER][MSGANZEIGESTEUER]
{|Währung|}:[WAEHRUNG][MSGWAEHRUNG]
{|Sprache|}:[SPRACHE][MSGSPRACHE]
{|Wechselkurs|}:[KURS][MSGKURS]
{|Kostenstelle|}:[KOSTENSTELLE][MSGKOSTENSTELLE]
- - -
- -
-
-
-
- - - -

- -
- -
-
- - - - -
-
- - - -
- - - - - - - - - -
Rechnung [NUMMER][KUNDE][RABATTANZEIGE][ICONMENU2]
- - - -[POS] - -
- - -
-
-
-
- -[FURTHERTABSDIV] - +
+
+ [FURTHERTABSDIV] +
diff --git a/www/widgets/widget.rechnung.php b/www/widgets/widget.rechnung.php index d8eda528..01142b8b 100644 --- a/www/widgets/widget.rechnung.php +++ b/www/widgets/widget.rechnung.php @@ -130,7 +130,6 @@ class WidgetRechnung extends WidgetGenRechnung $status = $this->app->erp->GetStatusRechnung(); - $zahlungsweisenmodule = $this->app->DB->SelectArr("SELECT id, modul, type FROM zahlungsweisen WHERE verhalten = 'rechnung'"); if (!is_null($zahlungsweisenmodule)) {